html {
    scroll-behavior: smooth;
}

.bootstrap-notify-container {
    z-index: 9999 !important;
}

.icon-box:before {
    content: none !important;
}

.dashboard-card {
    border: 1px solid #eee;
    border-radius: 18px;
}

.dashboard-card:hover {
    border-color: #A78BFA;
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.amount-text {
    font-size: 28px;
    color: #111827;
}

.rate-wrapper {
    border-radius: 18px;
    border-left: 5px solid #A78BFA;
}

.rate-header-icon {
    width: 45px;
    height: 45px;
    background: #A78BFA;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rate-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 1px solid #eee;
    border-radius: 14px;
    transition: 0.2s ease;
}

.rate-item:hover {
    border-color: #A78BFA;
    background: #faf7ff;
}

.rate-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bg-purple-soft {
    background: rgba(167, 139, 250, 0.15);
}

.text-purple {
    color: #A78BFA;
}

.quick-card {
    border-radius: 18px;
    border-left: 5px solid #A78BFA;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #eee;
    background: #fff;
    font-weight: 500;
    color: #333;
    transition: 0.2s ease;
}

.quick-action:hover {
    background: #f8f5ff;
    border-color: #A78BFA;
    color: #A78BFA;
}

.quick-icon {
    width: 50px;
    height: 50px;
    background: rgba(167, 139, 250, 0.15);
    color: #A78BFA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.mini-stat-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    transition: 0.2s ease;
}

.mini-stat-card h4 {
    margin-top: 8px;
    font-weight: 700;
    color: #111827;
}

.mini-stat-card:hover {
    border-color: #A78BFA;
    background: #faf7ff;
}

.mini-stat-card.success h4 {
    color: #198754;
}

.mini-stat-card.danger h4 {
    color: #dc3545;
}

.mini-stat-card.warning h4 {
    color: #ffc107;
}

.alert {
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 18px !important;
    font-size: 14px;
    font-weight: 500;
    min-width: 320px;
    max-width: 420px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: smoothSlide 0.4s ease;
}

.alert i {
    font-size: 18px;
}

.alert-success {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff !important;
}

.alert-danger {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #fff !important;
}

.alert-warning {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1f2937 !important;
}

.alert-info {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff !important;
}

.alert button.close {
    color: inherit !important;
    opacity: 0.8;
    font-size: 16px;
}

.alert button.close:hover {
    opacity: 1;
}

@keyframes smoothSlide {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}