
.section-card {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    background: #fff;
}

.section-card .card-header {
    background: #fff;
    border-bottom: 1px solid #f1f3f7;
    padding: 18px 22px;
}

.section-card .card-body {
    padding: 22px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.summary-card {
    border-radius: 18px;
    padding: 22px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.summary-label {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.summary-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}
.detail-card,
.info-card {
    border: 1px solid #eef1f6;
    border-radius: 14px;
    background: #fff;
    transition: all 0.2s ease;
    height: 100%;
    padding: 18px;
}

.detail-card:hover,
.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.detail-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    word-break: break-word;
    line-height: 1.5;
}

.icon-box,
.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--bs-primary-rgb), 0.08);
    color: var(--bs-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.copy-btn {
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-badge,
.status-badge {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}
.user-section {
    background: #f8fafc;
    border-radius: 18px;
    padding: 24px;
    margin-top: 40px;
}
.alert-custom {
    border-radius: 14px;
    border: 0;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.12);
}
.border-dashed {
    border-style: dashed !important;
}