/* Start custom CSS for shortcode, class: .elementor-element-68c4f7b *//* Base Styles */
.tennis-calculator {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    font-family: 'Arial', sans-serif;
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #2ecc71;
    color: white;
    border-radius: 8px;
}

.calculator-header i {
    font-size: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

select, input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.calculate-btn {
    background: #2ecc71;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s ease;
}

.calculate-btn:hover {
    background: #27ae60;
}

.calculator-results {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.results-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 1rem;
    background: #fff;
    border-radius: 5px;
}

.adult-fields {
    display: none;
    gap: 1rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .tennis-calculator {
        padding: 1rem;
        margin: 1rem;
    }
    
    .result-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    select, input {
        padding: 10px;
    }
}/* End custom CSS */