.age-selector-wrapper {
    position: relative;
}

.age-selector-display {
    cursor: pointer;
    text-align: left;
    background: white;
    border: 1px solid #d1d5db;
}

.age-selector-display:hover {
    border-color: #9ca3af;
}

.age-selector-display:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.age-selector-popover {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 4px;
    min-width: 350px;
    width: max-content;
}

.age-selector-content {
    padding: 16px;
}

.age-selector-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    white-space: nowrap;
}

.age-selector-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 16px;
    text-align: left;
    white-space: nowrap;
}

.age-selector-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.age-selector-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 8px;
    display: none;
}

/* Remove number input arrows */
.age-selector-input::-webkit-outer-spin-button,
.age-selector-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.age-selector-input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

@media (max-width: 768px) {
    .age-selector {
        width: 100%;
    }
}
