/**
 * Cantor Católico - Panel del director.
 */
.cc-panel-director {
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 16px 48px;
    color: #202522;
}

.cc-panel-header {
    margin-bottom: 24px;
}

.cc-panel-header h2 {
    margin: 4px 0 8px;
}

.cc-panel-kicker {
    margin: 0;
    color: #257447;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cc-panel-card {
    margin: 0 0 24px;
    padding: 24px;
    border: 1px solid #d9dedb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(26, 55, 37, 0.06);
}

.cc-panel-card h3 {
    margin-top: 0;
}

.cc-panel-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: end;
}

.cc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cc-field label {
    font-weight: 650;
}

.cc-field input,
.cc-field select {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
    padding: 8px 10px;
    border: 1px solid #b8c1bc;
    border-radius: 7px;
    background: #fff;
    color: #202522;
}

.cc-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border: 1px solid #257447;
    border-radius: 7px;
    text-decoration: none;
    cursor: pointer;
}

.cc-button-primary {
    background: #257447;
    color: #fff;
    font-weight: 700;
}

.cc-button-primary:hover,
.cc-button-primary:focus {
    background: #1d5c38;
    color: #fff;
}

.cc-notice {
    margin-bottom: 20px;
    padding: 12px 14px;
    border-radius: 8px;
}

.cc-notice-success {
    border: 1px solid #76b78f;
    background: #edf8f1;
    color: #195b34;
}

.cc-notice-error {
    border: 1px solid #cf8787;
    background: #fff2f2;
    color: #842929;
}

.cc-members-list {
    margin-top: 24px;
    border-top: 1px solid #e0e4e1;
}

.cc-member-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e0e4e1;
}

.cc-member-row strong,
.cc-member-row span {
    display: block;
}

.cc-member-row span {
    font-size: 0.9rem;
    color: #5b655f;
}

.cc-member-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc-role-badge {
    padding: 4px 8px;
    border-radius: 999px;
    background: #edf8f1;
    color: #195b34 !important;
    font-size: 0.76rem !important;
    font-weight: 700;
}

.cc-button-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: #8a2525;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 720px) {
    .cc-panel-form {
        grid-template-columns: 1fr;
    }

    .cc-member-row {
        align-items: flex-start;
        flex-direction: column;
    }
}
