#cookie-consent {
        position: fixed;
        bottom: 20px;
        left: 20px;
        max-width: 390px;
        background: #1e88e5;
        color: white !important;
        padding: 20px;
        border-radius: 8px 8px 8px 8px;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
        display: none;
        z-index: 9999;
        font-family: Arial, sans-serif;
        line-height: 1.5;
        box-sizing: border-box;
    }
    
    /* Мобильная версия (горизонтальный и вертикальный режим) */
    @media only screen and (max-width: 768px) {
        #cookie-consent {
            right: 0;
            left: 0;
			bottom: 0;
            width: 100% !important;
            max-width: 100% !important;
            border-radius: 0;
            padding: 15px 20px;
        }
        
        #cookie-consent p {
            margin-bottom: 12px;
			color: white !important;
            
        }
        
        #cookie-consent-btn {
            width: 100%;
            padding: 12px;
            margin-top: 8px;
            font-size: 16px;
        }
    }
    
    #cookie-consent p {
        margin: 0 0 15px 0;
        font-size: 12px;
		color: white !important;
    }
    
    #cookie-consent a {
        color: #bbdefb;
        text-decoration: underline;
        white-space: nowrap;
    }
	
	#cookie-consent a:hover {
        color: #e3f2fd;
        text-decoration: underline;
        white-space: nowrap;
    }
    
    #cookie-consent-btn {
        background: white;
        color: #1e88e5;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.2s;
    }
    
    #cookie-consent-btn:hover {
        background: #e3f2fd;
    }
    
    .cookie-consent-container {
        display: flex;
        flex-direction: column;
    }		