@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.input-focus {
    transition: all 0.3s ease;
}

    .input-focus:focus {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.btn-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-hover:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .btn-hover:hover:before {
        left: 100%;
    }

    .btn-hover:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.slide-in {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-item {
    transition: all 0.2s ease-in-out;
}

    .sidebar-item:hover {
        transform: translateX(4px);
    }

.active-item {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-left: 3px solid #8b5cf6;
}

.blazored-toast {
    background-color: #1e293b; /* Tailwind slate-800 */
    color: white;
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Success */
.blazored-toast-success {
    border-left: 4px solid #22c55e; /* green-500 */
}

/* Error */
.blazored-toast-error {
    border-left: 4px solid #ef4444; /* red-500 */
}

/* Info */
.blazored-toast-info {
    border-left: 4px solid #3b82f6; /* blue-500 */
}

/* Warning */
.blazored-toast-warning {
    border-left: 4px solid #f59e0b; /* amber-500 */
}

.blazored-modal-custom {
    width: auto !important;
    max-width: 1200px !important;
    background-color: transparent;
    padding: 20px;
}

.bm-title {
    color: red;
}
.checkbox-indeterminate {
    position: relative;
}

    .checkbox-indeterminate::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 8px;
        height: 2px;
        background-color: #7c3aed;
        transform: translate(-50%, -50%);
    }