.profile-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}
.profile-header {
    background: #29708C;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
}
.profile-table th {
    background: #f8f9fa;
    font-weight: 600;
    width: 30%;
}
.profile-table td, 
.profile-table th {
    padding: 10px 15px;
    border: 1px solid #dee2e6;
    vertical-align: middle;
}
.profile-table td a {
    color: #29708C;
    font-weight: 600;
    text-decoration: none;
}

/* 📱 Mobile-friendly layout */
@media (max-width: 768px) {
    .profile-table,
    .profile-table tbody,
    .profile-table tr,
    .profile-table th,
    .profile-table td {
    display: block;
    width: 100% !important;
    }
    .profile-table tr {
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    }
    .profile-table th {
    background: #29708C;
    color: #fff;
    padding: 8px;
    border: none;
    border-radius: 5px 5px 0 0;
    }
    .profile-table td {
    padding: 8px 10px;
    border: none;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    margin-bottom: 5px;
    }
}