/**
 * Points of Contact - Fancy table design
 */

.page-points-of-contact #content #main table.grid {
    width: 100%;
    border: none;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.page-points-of-contact #content #main table.grid thead th,
.page-points-of-contact #content #main table.grid tbody tr:first-child th {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: left;
    padding: 16px 20px;
    border: none;
}

.page-points-of-contact #content #main table.grid tbody tr {
    transition: background 0.2s ease;
}

.page-points-of-contact #content #main table.grid tbody tr td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #334155;
    vertical-align: middle;
}

.page-points-of-contact #content #main table.grid tbody tr:last-child td {
    border-bottom: none;
}

.page-points-of-contact #content #main table.grid tbody tr.even,
.page-points-of-contact #content #main table.grid tbody tr:nth-child(even) {
    background: #f8fafc;
}

.page-points-of-contact #content #main table.grid tbody tr:hover {
    background: #eff6ff;
}

.page-points-of-contact #content #main table.grid tbody tr:hover td {
    border-bottom-color: #bfdbfe;
}

.page-points-of-contact #content #main table.grid tbody tr:last-child:hover td {
    border-bottom: none;
}

.page-points-of-contact #content #main table.grid td:first-child {
    font-weight: 600;
    color: #0f172a;
}

.page-points-of-contact #content #main table.grid td a {
    display: inline-block;
    padding: 6px 14px;
    background: #1e3a5f;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s, transform 0.1s;
}

.page-points-of-contact #content #main table.grid td a:hover {
    background: #2d4a6f;
}

.page-points-of-contact #content #main table.grid td a span {
    color: inherit !important;
    text-decoration: none !important;
}
