
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }
        .custom-scrollbar::-webkit-scrollbar-track {
            background: #F9ECEF;
        }
        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #5E0B1B;
            border-radius: 4px;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(244, 211, 217, 0.5);
        }
        .pulse-border {
            box-shadow: 0 0 0 0 rgba(216, 122, 143, 0.7);
            animation: pulse-anim 2s infinite;
        }
        @keyframes pulse-anim {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(216, 122, 143, 0.7);
            }
            70% {
                transform: scale(1.02);
                box-shadow: 0 0 0 10px rgba(216, 122, 143, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(216, 122, 143, 0);
            }
        }
    