/* Team Registration Specific Styles */
/* Most layout styles are inherited from player-registration.css */

.form-section {
    background: #fdfdfd;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-section h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.radio-group label {
    background: #fff;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.radio-group label:hover {
    background: #f0f4f8;
}

.radio-group input[type="radio"]:checked + span {
    font-weight: bold;
}

/* Constrain input widths */
.input-constrained,
.form-column input[type="text"],
.form-column input[type="email"],
.form-column input[type="tel"] {
    max-width: 100%;
    width: 350px;
}

.hidden {
    display: none !important;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 400px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--charcoal, #333);
    text-decoration: none;
    cursor: pointer;
}
