/**
 * Natal Chart Form Styles
 * CSS specific to the natal chart creation form
 */

/* City selection buttons */
.as_btn_secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.as_btn_secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #f1d302;
}

/* Ensure birth place input stays as text */
#birth_place {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

#birth_place::-webkit-calendar-picker-indicator {
    display: none !important;
}

#birth_place::-webkit-inner-spin-button,
#birth_place::-webkit-outer-spin-button {
    display: none !important;
}