/* ═══ Contact Details of Management ═══ */
.cdm-table-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.cdm-table-header {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.1rem 1.5rem;
    background: linear-gradient(135deg, #0c1a35, #1a4db8);
    color: #fff;
}
.cdm-table-header--alt {
    background: linear-gradient(135deg, #1a3d2e, #1a5c38);
}

.cdm-table-header-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}

.cdm-table-header-title { font-size: .95rem; font-weight: 700; line-height: 1.4; }

.cdm-table-wrap { overflow-x: auto; }

.cdm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .86rem;
}
.cdm-table thead th {
    text-align: left;
    background: #fafbfc;
    color: #64748b;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .8rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}
.cdm-table tbody td {
    padding: .9rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: top;
    line-height: 1.55;
}
.cdm-table tbody tr:last-child td { border-bottom: none; }
.cdm-table tbody tr:hover { background: #fafbfc; }

.cdm-sno { font-weight: 700; color: #64748b; width: 45px; }

.cdm-address {
    min-width: 280px;
    background: #f8fafc;
    border-left: 1px solid #f1f5f9;
}
.cdm-addr-block {
    font-size: .8rem;
    margin-bottom: .6rem;
}
.cdm-addr-block:last-child { margin-bottom: 0; }
.cdm-addr-block strong {
    display: block;
    color: #1a5c38;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: .15rem;
}

@media (max-width: 768px) {
    .cdm-table, .cdm-table thead, .cdm-table tbody, .cdm-table tr { display: block; width: 100%; }
    .cdm-table thead { display: none; }
    .cdm-table tbody tr {
        border-bottom: 2px solid #e2e8f0;
        padding: .8rem 0;
    }
    .cdm-table tbody td {
        display: block;
        border-bottom: none;
        padding: .35rem 1.25rem;
    }
    .cdm-address { border-left: none; background: transparent; }
}

/* ═══ Full-width layout (no sidebar) ═══ */
.cdm-main {
    min-height: 60vh;
    padding: 2.5rem 0 4rem;
}
.cdm-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
