:root {
    --bni-red: #70132E;
    --bni-red-dark: #5A0F25;
    --bni-red-light: #8B2A48;
    --heading-color: #F74070;
    --bni-white: #FFFFFF;
    --light-red-bg: #FEF5F5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.card-title:not(.text-white),
.asks-title {
    color: #F74070 !important;
}

.card-header .card-title {
    color: #FFFFFF !important;
}

.btn-bni-red {
    background-color: #70132E !important;
    color: #FFFFFF !important;
    border: none !important;
    transition: all 0.2s ease-in-out;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
}

.btn-bni-red:hover {
    background-color: #5A0F25 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(112, 19, 46, 0.3);
}

.btn-bni-red.btn-sm {
    padding: 5px 12px;
    font-size: 0.875rem;
}

.dashboard-header {
    background-color: #70132E !important;
}

/* Welcome Card - Fitted */
.welcome-card {
    background-color: #FEF5F5;
    transition: all 0.3s ease;
    border-radius: 12px !important;
}

.welcome-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(112, 19, 46, 0.15);
}

/* Activity Summary Card */
.activity-summary-card {
    background: linear-gradient(135deg, #70132E 0%, #8B2A48 100%);
    transition: all 0.3s ease;
    border-radius: 12px !important;
}

.activity-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(112, 19, 46, 0.25);
}

.activity-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

/* Stats Container - No Gaps */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #F74070 !important;
}

.stat-icon-wrapper i {
    font-size: 1rem;
}

.stat-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #FFFFFF;
}

.stat-value-wrapper {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 4px 12px;
    min-width: 50px;
    text-align: center;
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #70132E;
}

/* Avatar Styles */
.avatar-welcome {
    width: 70px;
    height: 70px;
    background-color: #70132E;
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ask-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    background-color: #70132E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Asks Section */
.asks-header {
    background-color: #70132E !important;
}

.badge-white {
    background-color: #FFFFFF;
    color: #70132E;
}

/* Delete Button */
.delete-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dc3545;
    background-color: transparent;
    color: #dc3545;
}

.delete-btn:hover {
    background-color: #dc3545;
    color: white !important;
}

/* Form Focus */
.form-control:focus,
.form-select:focus {
    border-color: #70132E;
    box-shadow: 0 0 0 0.2rem rgba(112, 19, 46, 0.25);
}

/* Table Styles */
.table td {
    vertical-align: middle;
}

.table thead th {
    background-color: #FEF5F5;
    color: #5A0F25;
    border-bottom: 2px solid #70132E;
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: #FEF5F5;
}

/* Auth Avatar */
.auth-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    border-radius: 50%;
    line-height: 80px;
    text-align: center;
}

.login-avatar {
    background-color: #70132E;
    color: white;
}

.auth-title {
    color: #F74070 !important;
}

.password-toggle {
    border-color: #dee2e6;
    background-color: white;
    border-left: none;
    color: #6c757d;
}

.password-toggle:hover {
    background-color: #f8f9fa;
    transform: none;
    box-shadow: none;
}

.input-group .form-control:focus+.password-toggle {
    border-color: #70132E;
}

.input-group>.form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group>.password-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.clickable-image {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.clickable-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stat-name {
        font-size: 0.75rem;
    }

    .stat-value {
        font-size: 0.8rem;
    }

    .stat-icon-wrapper {
        width: 28px;
        height: 28px;
    }

    .stat-value-wrapper {
        padding: 2px 10px;
        min-width: 45px;
    }

    .avatar-welcome {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.welcome-profile-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.theme-badge {
    background-color: #F74070 !important;
    color: white !important;
    border-radius: 20px;
    padding: 4px 10px;
}