/* Reset body, remove full flex that broke layout */
body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

/* Center entire page content */
.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
}

.logo-container {   
    text-align: center;
}
/* Responsive Logo */
.logo-container img {
    width: 600px;
    max-width: 60%;
    height: auto;
    margin-bottom: 10px;
}

/* The box around the form (RESTORED HERE!) */
.form-container {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    margin-bottom: 25px;
}

/* Form fields */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

/* Date field wrapper */
.dob-wrapper {
    position: relative;
}

.calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    opacity: 0.6;
}

.calendar-icon:hover {
    opacity: 1;
}

/* Submit button */
.search-button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
}

.search-button:hover {
    background-color: #0056b3;
}

/* Results Container */
.results-container {
    width: 100%;
    max-width: 600px;
}

/* Box for each result OR "no results found" */
.result-box {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.5;
}
