   /** {*/
   /*         margin: 0;*/
   /*         padding: 0;*/
   /*         box-sizing: border-box;*/
   /*         font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
   /*     }*/

        /*body {*/
        /*    display: flex;*/
        /*    justify-content: center;*/
        /*    align-items: center;*/
        /*    min-height: 100vh;*/
        /*    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
        /*    padding: 20px;*/
        /*}*/

        /*.container {*/
        /*    width: 100%;*/
        /*    max-width: 500px;*/
        /*    display: flex;*/
        /*    flex-direction: column;*/
        /*    gap: 20px;*/
        /*}*/

        .controls {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }

        button {
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            background: #4776E6;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 10px rgba(71, 118, 230, 0.3);
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(71, 118, 230, 0.4);
        }

        button:active {
            transform: translateY(0);
        }

        button.success {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
        }
        
        button.statusactive {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
        }
        
        button.delete {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
        }
        
        button.editsuccess {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
        }
        
         button.statusinactive {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
        }

        button.warning {
            background: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);
            box-shadow: 0 4px 10px rgba(255, 179, 71, 0.3);
        }

        button.error {
            background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
            box-shadow: 0 4px 10px rgba(245, 87, 108, 0.3);
        }
        
        button.somethingwentwrong {
            background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
            box-shadow: 0 4px 10px rgba(245, 87, 108, 0.3);
        }

        #notifications-container {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 300px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
         

        .notification {
            /* right: 350px !important;*/
            width: 100% !important;
            background: white;
            border-radius: 12px;
            padding: 37px !important;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: slideIn 0.5s ease forwards, fadeOut 0.3s ease forwards 4.7s;
            position: relative;
            /*overflow: hidden;*/
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transform: translateX(120%);
        }

        .notification.info {
            background: rgba(71, 118, 230, 0.1);
            border-left: 4px solid #4776E6;
        }

        .notification.success {
            background: rgba(67, 233, 123, 0.1);
            border-left: 4px solid #43e97b;
        }
        
         .notification.statusactive {
            background: rgba(67, 233, 123, 0.1);
            border-left: 4px solid #43e97b;
        }
        
         .notification.delete {
            background: rgba(67, 233, 123, 0.1);
            border-left: 4px solid #43e97b;
        }
        
        .notification.editsuccess {
            background: rgba(67, 233, 123, 0.1);
            border-left: 4px solid #43e97b;
        }
        
         .notification.statusinactive {
            background: rgba(67, 233, 123, 0.1);
            border-left: 4px solid #43e97b;
        }

        .notification.warning {
            background: rgba(255, 179, 71, 0.1);
            border-left: 4px solid #ffb347;
        }

        .notification.error {
            background: rgba(245, 87, 108, 0.1);
            border-left: 4px solid #f5576c;
        }
        
         .notification.somethingwentwrong {
            background: rgba(245, 87, 108, 0.1);
            border-left: 4px solid #f5576c;
        }

        .notification-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .notification.info .notification-icon {
            background: #4776E6;
        }

        .notification.success .notification-icon {
            background: #43e97b;
        }
        .notification.statusactive .notification-icon {
            background: #43e97b;
        }
        
         .notification.delete .notification-icon {
            background: #43e97b;
        }
        
        .notification.editsuccess .notification-icon {
            background: #43e97b;
        }
        
         .notification.statusinactive .notification-icon {
            background: #43e97b;
        }

        .notification.warning .notification-icon {
            background: #ffb347;
        }

        .notification.error .notification-icon {
            background: #f5576c;
        }
        .notification.somethingwentwrong .notification-icon {
            background: #f5576c;
        }

        .notification-content {
            flex: 1;
        }

        .notification-title {
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 14px;
        }

        .notification-message {
            font-size: 12px;
            opacity: 0.8;
        }

        .notification-close {
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.2s;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            line-height: 1;
        }

        .notification-close:hover {
            opacity: 1;
        }

        .notification-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 100%;
            transform: scaleX(0);
            transform-origin: left;
            animation: progress 5s linear forwards;
        }

        .notification.info .notification-progress {
            background: #4776E6;
        }

        .notification.success .notification-progress {
            background: #43e97b;
        }
        
         .notification.statusactive .notification-progress {
            background: #43e97b;
        }
        
          .notification.delete .notification-progress {
            background: #43e97b;
        }
        
         .notification.editsuccess .notification-progress {
            background: #43e97b;
        }
        
         .notification.statusinactive .notification-progress {
            background: #43e97b;
        }

        .notification.warning .notification-progress {
            background: #ffb347;
        }

        .notification.error .notification-progress {
            background: #f5576c;
        }
        .notification.somethingwentwrong .notification-progress {
            background: #f5576c;
        }

        @keyframes slideIn {
            from {
                transform: translateX(120%);
            }
            to {
                transform: translateX(0);
            }
        }

        @keyframes fadeOut {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(120%);
            }
        }

        @keyframes progress {
            from {
                transform: scaleX(1);
            }
            to {
                transform: scaleX(0);
            }
        }

        .theme-toggle {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        body.dark {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            color: white;
        }

        body.dark .notification {
            background: rgba(31, 41, 55, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
        }
        .bg-primary {
            background-color: #fff !important;
        }
        .rounded-circle {
            border-radius: 0% !important;
            display:none;
        }
        