/* Custom CSS for FlexiCon */
    @import "tailwind.css";
   /* Modern Space Theme Styles */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        .space-bg {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 100%);
            position: relative;
            overflow: hidden;
        }
        
        .space-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
                radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            animation: starMove 20s linear infinite;
        }
        
        @keyframes starMove {
            from { transform: translateY(0px); }
            to { transform: translateY(-100px); }
        }
        
        .glow-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .glow-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(99, 102, 241, 0.3);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
            transform: translateY(-5px);
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .text-gradient-space {
            background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 50%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .btn-glow {
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
            transition: all 0.4s ease;
        }
        
        .btn-glow:hover {
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
            transform: translateY(-2px);
        }
        
        .pulse-gentle {
            animation: pulseGentle 4s ease-in-out infinite;
        }
        
        @keyframes pulseGentle {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .nav-glass {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .feature-glow {
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.5s ease;
        }
        
        .feature-glow:hover {
            background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(139,92,246,0.1) 100%);
            border-color: rgba(99,102,241,0.3);
            box-shadow: 0 15px 35px rgba(99,102,241,0.1);
        }
        
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }
        
        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
/* CSS Variables for Light and Dark Mode */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-tertiary: #9ca3af;
    --border-color: #e5e7eb;
    --shadow: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --bg-primary: #1f2937;
    --bg-secondary: #111827;
    --bg-tertiary: #374151;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-tertiary: #9ca3af;
    --border-color: #4b5563;
    --shadow: rgba(0, 0, 0, 0.3);
}

/* Dark mode toggle button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--shadow);
}

/* Apply dark mode styles */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Apply animations to elements */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in {
    animation: slideInLeft 0.8s ease-out;
}

.animate-bounce-hover:hover {
    animation: bounce 1s;
}

/* Custom gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Custom button styles */
.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.6);
}

/* Custom card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Code block styling */
.code-block {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    font-family: 'Fira Code', 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    white-space: pre-wrap;
}

/* Syntax highlighting */
.code-block .keyword {
    color: #569cd6;
}

.code-block .string {
    color: #ce9178;
}

.code-block .comment {
    color: #6a9955;
    font-style: italic;
}

.code-block .number {
    color: #b5cea8;
}

.code-block .function {
    color: #dcdcaa;
}

/* Navigation improvements */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
}

/* Mobile menu animation */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease-in-out;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.notification.error {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

.notification.warning {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
}

.notification.info {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

/* Form improvements */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

.form-input.success {
    border-color: #10b981;
}

.form-error {
    color: #ef4444;
    font-size: 14px;
    margin-top: 4px;
}

.form-success {
    color: #10b981;
    font-size: 14px;
    margin-top: 4px;
}

/* Dashboard specific styles */
.dashboard-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.metric-card {
    text-align: center;
    padding: 32px 24px;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-change {
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

.metric-change.positive {
    color: #10b981;
}

.metric-change.negative {
    color: #ef4444;
}

/* Status indicators */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-active {
    background: #10b981;
}

.status-inactive {
    background: #ef4444;
}

.status-pending {
    background: #f59e0b;
}

/* Progress bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table tr:hover {
    background: #f9fafb;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background: #dbeafe;
    color: #1e40af;
}

.badge-success {
    background: #d1fae5;
    color: #065f46;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-error {
    background: #fee2e2;
    color: #991b1b;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full {
        width: 100% !important;
    }
    
    .mobile-text-center {
        text-align: center !important;
    }
    
    .mobile-padding {
        padding: 16px !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .dark-mode-support {
        background: #1f2937;
        color: #f9fafb;
    }
    
    .dark-mode-support .dashboard-card {
        background: #374151;
        border-color: #4b5563;
    }
    
    .dark-mode-support .form-input {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    
    .dark-mode-support .table th {
        background: #374151;
        color: #f9fafb;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .dashboard-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #fff !important;
    }
    
    .form-input {
        border: 2px solid #000 !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Modal Styles */
.custom-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.custom-modal {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    margin: auto;
}

.custom-modal-close {
    animation: slideDown 0.25s ease forwards;
}

.modal-header-container {
    border-bottom: 1px solid #e5e7eb;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-header .title {
    font-weight: 600;
    color: #1f2937;
}

.custom-modal-body {
    overflow-y: auto;
    max-height: calc(90vh - 200px);
}

.custom-modal-close-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.custom-modal-close-button:hover {
    background: #f3f4f6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* Modal Form Styling */
.custom-modal-body text-input,
.custom-modal-body select,
.custom-modal-body textarea,
.custom-modal-body input {
    margin-bottom: 16px;
}

.custom-modal-body text-input input,
.custom-modal-body select,
.custom-modal-body textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: #fff;
    color: #1f2937;
}

.custom-modal-body text-input input:focus,
.custom-modal-body select:focus,
.custom-modal-body textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.custom-modal-body text-input input::placeholder {
    color: #9ca3af;
}

.custom-modal-body label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.custom-modal-body select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

.custom-modal-body select option {
    padding: 8px;
}

.custom-modal-body textarea {
    min-height: 100px;
    resize: vertical;
}

/* Modal Button Styling */
.custom-modal button[type="submit"],
.custom-modal progress-button button {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.custom-modal button[type="submit"]:hover,
.custom-modal progress-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.custom-modal button[type="submit"]:active,
.custom-modal progress-button button:active {
    transform: translateY(0);
}

.custom-modal button[type="submit"]:disabled,
.custom-modal progress-button button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Hide circular progress by default in modal buttons */
.custom-modal progress-button circular-progress {
    display: none;
}

/* Show circular progress when not hidden */
.custom-modal progress-button circular-progress:not(.display-none) {
    display: inline-block;
}

/* Ensure progress button spans full width */
.custom-modal progress-button {
    width: 100%;
    display: block;
}

.custom-modal .close-modal,
.custom-modal button[type="button"] {
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-modal .close-modal:hover,
.custom-modal button[type="button"]:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Modal Description Text */
.custom-modal-body p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Modal Icon Styling */
.custom-modal-header .fal,
.custom-modal-header .fa {
    color: #2563eb;
    margin-right: 8px;
}

/* Form Validation States */
.custom-modal-body input:invalid:not(:placeholder-shown),
.custom-modal-body select:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.custom-modal-body input:valid:not(:placeholder-shown),
.custom-modal-body select:valid {
    border-color: #10b981;
}

/* Required Field Indicator */
.custom-modal-body [required] + label::after,
.custom-modal-body label:has(+ [required])::after {
    content: ' *';
    color: #ef4444;
    font-weight: 600;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .custom-modal {
        max-width: 95%;
        margin: 10px;
    }
    
    .custom-modal-body {
        padding: 16px !important;
    }
    
    .custom-modal button {
        width: 100%;
        margin-bottom: 8px;
    }
}

/* Smooth Transitions for Modal Elements */
.custom-modal * {
    transition: all 0.2s ease;
}

/* Main content takes full width - no sidebar */
.main-content {
    margin-left: 0 !important;
    width: 100% !important;
}

/* Hide any sidebar elements */
.sidebar-container,
side-bar,
[side-bar] {
    display: none !important;
}


/* /////////////////////////////////////////////// */
/* TOAST STYLES */
/* /////////////////////////////////////////////// */
.toast {
    width: auto !important;
    opacity: 1;
    background-color: transparent;
    background: #fff;
    padding: 15px;
    border: 1px solid #fff;
    margin: 0 5px;
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    overflow: hidden;
    transition: background-color .25s ease-in-out;
    -webkit-transition: background-color .25s ease-in-out;
    -moz-transition: background-color .25s ease-in-out;
    -ms-transition: background-color .25s ease-in-out;
    -o-transition: background-color .25s ease-in-out;
    box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.08);
    -o-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.08);
    -ms-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.08);
    cursor: default
}

.toast>button {
    cursor: pointer
}

.toast:hover {
    background-color: #f2f2f2
}

.toast:focus {
    outline: none;
    border: 1px solid #f2f2f2
}

.toast.toast-primary {
    color: #004a99;
    background: #80bdff;
    border: 1px solid #80bdff
}

.toast.toast-primary:hover {
    background-color: #66b0ff
}

.toast.toast-primary:focus {
    outline: none;
    border: 1px solid #66b0ff
}

.toast.toast-primary>button {
    color: #004a99
}

.toast.toast-danger {
    color: #921925;
    background: #efa2a9;
    border: 1px solid #efa2a9
}

.toast.toast-danger:hover {
    background-color: #eb8c95
}

.toast.toast-danger:focus {
    outline: none;
    border: 1px solid #eb8c95
}

.toast.toast-danger>button {
    color: #921925
}

.toast.toast-success {
    color: #145523;
    background: #71dd8a;
    border: 1px solid #71dd8a
}

.toast.toast-success:hover {
    background-color: #5dd879
}

.toast.toast-success:focus {
    outline: none;
    border: 1px solid #5dd879
}

.toast.toast-success>button {
    color: #145523
}

.toast.toast-warning {
    color: #533f00;
    background: #ffe186;
    border: 1px solid #ffe186
}

.toast.toast-warning:hover {
    background-color: #ffdb6d
}

.toast.toast-warning:focus {
    outline: none;
    border: 1px solid #ffdb6d
}

.toast.toast-warning>button {
    color: #533f00
}

.toast.toast-dark {
    color: #fff;
    background: #4b535c;
    border: 1px solid #4b535c
}

.toast.toast-dark:hover {
    background-color: #3f474e
}

.toast.toast-dark:focus {
    outline: none;
    border: 1px solid #3f474e
}

.toast.toast-dark>button {
    color: #fff
}

.toast.no-shadow {
    box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0);
    -o-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0);
    -ms-box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0)
}