.profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.profile-info h3 {
    margin: 0;
    font-weight: 600;
    font-size: 24px;
}

.profile-info p {
    margin: 5px 0 0;
    opacity: 0.9;
    font-size: 14px;
}

.badge-status {
    background: #48bb78;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    vertical-align: middle;
}



.records-section {
    background: #121826;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.nav-tabs {
    border-bottom: 2px solid #4a5568;
    margin-bottom: 20px;
}

.nav-tabs>li>a {
    border: none !important;
    color: #a0aec0;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 0;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #667eea;
    border-bottom: 2px solid #667eea !important;
    background: transparent;
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
}

.table-custom th {
    background: #2d3748;
    color: #e2e8f0;
    padding: 12px 15px;
    font-size: 13px;
    text-transform: uppercase;
    border-bottom: 2px solid #4a5568;
    text-align: left;
}

.table-custom td {
    padding: 12px 15px;
    border-bottom: 1px solid #4a5568;
    color: #edf2f7;
    font-size: 14px;
}

.table-custom tr:hover td {
    background: #2d3748;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-completed {
    background: #c6f6d5;
    color: #22543d;
}

.status-pending {
    background: #feebc8;
    color: #7b341e;
}

.status-failed {
    background: #fed7d7;
    color: #822727;
}