/**
* Theme Name: Tripay Child
* Description: This is a child theme of Tripay, generated by Merlin WP.
* Author: <a href="http://pavothemes.com/">Pavothemes</a>
* Template: tripay
* Version: 1.0.5
*/

/* Children Age Dropdowns Container */
.children-ages-container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.child-age-select-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 8px 0;
}

.child-age-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.child-age-select {
    width: 140px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.child-age-select:hover {
    border-color: #4db8a8;
}

.child-age-select:focus {
    outline: none;
    border-color: #4db8a8;
    box-shadow: 0 0 0 3px rgba(77, 184, 168, 0.1);
}

.child-age-select.error-highlight {
    border-color: #ff4444;
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Adjust guest field spacing */
.input_select_field_guests {
    padding: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .child-age-select-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .child-age-select {
        width: 100%;
    }
}