/* --- 14. NÂNG CẤP GIAO DIỆN THEO MẪU PROFILE (IMAGE_AB6622) --- */

/* Nền trang web chuẩn chuyên nghiệp */
body {
    background-color: #f4f7f6 !important;
}

/* Avatar chuẩn đỏ Profile */
.avatar-circle {
    width: 90px;
    height: 90px;
    background-color: #cb2027 !important; /* Màu đỏ đô chuẩn mẫu */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(203, 32, 39, 0.2);
}

/* Căn chỉnh lại Stats (Số dư, Tổng đơn, Lần cuối) */
.stat-box span {
    color: #8898aa !important;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.stat-box h4 {
    color: #32325d;
    font-size: 1.25rem;
    margin-top: 5px;
}

/* Tab Navigation mượt mà */
.nav-tabs .nav-link {
    font-size: 0.9rem;
    color: #525f7f !important;
    padding: 1rem 1.5rem;
    transition: all 0.3s;
}

.nav-tabs .nav-link.active {
    color: #5e72e4 !important;
    font-weight: 700;
    position: relative;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 3px;
    background: #5e72e4;
    border-radius: 3px;
}

/* --- 15. NÚT THAO TÁC NHANH (OUTLINE MODERN) --- */
.btn-outline-success, .btn-outline-info, .btn-outline-warning {
    background: #fff;
    border-width: 1px !important;
    border-style: solid !important;
    transition: all 0.2s;
    font-weight: 600;
}

.btn-outline-success { border-color: #2dce89 !important; color: #2dce89 !important; }
.btn-outline-info { border-color: #11cdef !important; color: #11cdef !important; }
.btn-outline-warning { border-color: #fb6340 !important; color: #fb6340 !important; }

.btn-outline-success:hover { background: #2dce89; color: #fff; transform: translateX(5px); }
.btn-outline-info:hover { background: #11cdef; color: #fff; transform: translateX(5px); }
.btn-outline-warning:hover { background: #fb6340; color: #fff !important; transform: translateX(5px); }

/* --- 16. ALERT CHÚ Ý (YELLOW BAR) --- */
.alert-warning {
    background-color: #fff !important;
    border: none !important;
    border-left: 5px solid #ffcc00 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    color: #333 !important;
}

.alert-warning h6 {
    color: #856404;
}

/* --- 17. HIỆU ỨNG CARD 3D NÂNG CAO --- */
.card-3d {
    border: none !important;
    background: #ffffff !important;
}

.info-row {
    transition: background 0.2s;
}

.info-row:hover {
    background-color: #f8f9fe;
}

.info-row span:first-child {
    color: #8898aa;
    font-weight: 500;
}

/* Badge mini cho trạng thái Online (Chấm xanh) */
.online-status {
    width: 12px;
    height: 12px;
    background: #2dce89;
    border: 2px solid #fff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px rgba(45, 206, 137, 0.5);
}