		.cookie-notification {
			position: fixed;
/*
			background-color: rgb(255 255 255 / 90%);
*/
			background-image: linear-gradient(45deg, #e7e7e7, #FFFFFF);
			bottom: 0;
			left: 0;
			width: 100%;
			padding: 20px;
			z-index: 1000;
			box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
			transition: transform 0.3s ease;
	justify-content: center;
    align-items: center;
    display: flex;
    flex-flow: column;
		}

      
        .cookie-notification_hidden_yes {
            transform: translateY(100%);
        }
        
        .cookie-notification__header {
            margin-bottom: 10px;
            font-size: 23px;
            font-weight: 600;
            color: #000;
        }
        
        .cookie-notification__body {
            color: #000;
            max-width: 800px;
            float: left;
        }
        
        .cookie-notification__buttons {
            display: flex;
/*
            flex-wrap: wrap;
*/
            gap: 10px;
            min-width: 280px;
        }
        
        .cookie-notification__button {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .cookie-notification__button_accept {
            background-color: #3498db;
            color: white;
            min-width: 188px;
        }
        
        .cookie-notification__button_accept:hover {
            background-color: #2980b9;
        }
        
        .cookie-notification__button_reject {
                background-color: #fff;
    border: 1px solid gray;
    color: #3e3e3e;
        }
        
        .cookie-notification__button_reject:hover {
            background-color: #c0392b;
            color: #fff;
        }
        
        .cookie-notification__button_settings {
            background-color: transparent;
            color: #3498db;
            border: 1px solid #3498db;
        }
        
        .cookie-notification__button_settings:hover {
            background-color: rgba(52, 152, 219, 0.1);
        }
        
        .cookie-settings {
            position: fixed;
            background-color: white;
            bottom: 0;
            left: 0;
            width: 100%;
            color: #333;
            padding: 25px;
            z-index: 1001;
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
            max-height: 80vh;
            overflow-y: auto;
            transform: translateY(100%);
            transition: transform 0.3s ease;
	justify-content: center;
    align-items: center;
    display: flex;
    flex-flow: column;
        }

		.cookie-settings__panel {
			flex:1;
			max-height: 80vh;
			max-width: 70vh;
		}
        
        .cookie-settings_visible {
            transform: translateY(0);
        }
        
        .cookie-settings__header {
            margin-bottom: 20px;
            margin-top: 15px;
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .cookie-settings__group {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .cookie-settings__title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .cookie-settings__description {
            color: #7f8c8d;
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .cookie-settings__toggle {
            display: flex;
            align-items: center;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
            margin-right: 10px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: #3498db;
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(26px);
        }
        
        .cookie-settings__buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 20px;
            padding-bottom: 25px;
        }
        
        .cookie-settings__button {
            padding: 10px 25px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        .cookie-settings__button_save {
            background-color: #3498db;
            color: white;
        }
        
        .cookie-settings__button_save:hover {
            background-color: #2980b9;
        }
        
        .cookie-settings__button_cancel {
            background-color: #e0e0e0;
            color: #333;
        }
        
        .cookie-settings__button_cancel:hover {
            background-color: #d0d0d0;
        }
        
        .cookie-settings__button_reject_all {
            background-color: #e74c3c;
            color: white;
        }
        
        .cookie-settings__button_reject_all:hover {
            background-color: #c0392b;
        }
        
        .status-panel {
            background-color: #ecf0f1;
            border-radius: 6px;
            padding: 20px;
            margin: 30px 0;
        }
        
        .status-panel h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .status-item {
            margin-bottom: 10px;
            padding: 10px;
            background-color: white;
            border-radius: 4px;
            border-left: 4px solid #3498db;
        }
        
        .info-box {
            background-color: #e8f4fc;
            border-left: 4px solid #3498db;
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }
        
        .info-box h4 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        code {
            background-color: #f4f4f4;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 20px;
            }
            
            .cookie-notification__buttons {
                flex-direction: column;
            }
            
            .cookie-notification__button {
                width: 100%;
            }
            
            .cookie-settings__buttons {
                flex-direction: column;
            }
            
            .cookie-settings__button {
                width: 100%;
            }
        }
