@charset "utf-8";
/* CSS Document */
.facbox {
    width: 480px;
  margin: auto;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="date"] {
    width: calc(100% - 20px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;    
    font-size: 1.1rem;
    font-weight: bold;
}

button:hover {
    background-color: #0056b3;
}

.result {
    margin-top: 20px;
    text-align: left;
    background-color: #dfecf4;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.result h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #555;
}

.age-result {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    padding: 10px;
    border-bottom: 1px solid #eaeaea;
}

.age-result:last-child {
    border-bottom: none;
}