/* Cookie Consent Banner Styles for EHS-Prevention */

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent-banner.show {
    display: block;
    transform: translateY(0);
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 0;
}

.cookie-text a {
    color: #28B4E7;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #1a8dbf;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #28B4E7;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #1a8dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 180, 231, 0.4);
}

.cookie-btn-decline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 20px 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-text h3 {
        font-size: 19px;
    }
    
    .cookie-text p {
        font-size: 14px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .cookie-text h3 {
        font-size: 17px;
    }
    
    .cookie-text p {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}