/* Cookie Consent Light Box */
.cookie-lightbox {
    position: fixed; 
    right: 1%;
    left: 1%;
    bottom: 20px;
    z-index: 9999; 
    animation: slideInUp 0.5s ease-out;
}

.cookie-container {
    background: linear-gradient(90deg, #E1E3E1 0%, #FFFFFF 50%, #E1E3E1 100%);
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px 0px;
}

.cookie-body {
    padding: 25px 20px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.cookie-body p {
    margin: 0; 
    line-height: 1.5;
    color: #041C43;
    flex: 1;
    margin-right: 20px;
    font-weight:400;
}
 

.cookie-footer {
    display: flex;
    align-items: center;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.btn-accept:hover {
    background: #218838;
    transform: translateY(-1px);
}

.btn-decline {
    background: #6c757d;
    color: white;
}

.btn-decline:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Cookie Accept Button */
.btn-cookie-accept {
    padding: 10px 25px;
    border: 1px solid #ff6600;
    border-radius: 0;
    background: #ff6600; 
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.btn-cookie-accept:hover {
    background: #ff6600;
    color: white;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUpCenter {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-body {
        flex-direction: column;
        text-align: left;
        padding: 15px;
    }
    
    .cookie-body p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .cookie-header {
        padding: 12px 15px;
    }
    
    .cookie-body {
        padding: 15px;
    }
    
    .cookie-footer {
        padding: 12px 15px;
    }
}

/* Cookie Floating Box Version */
.cookie-floating {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    animation: slideInUpCenter 0.5s ease-out;
}

.cookie-floating-container {
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    width: 600px;
    max-width: calc(100vw - 40px);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.cookie-floating-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-floating-title {
    font-weight: 600;
    font-size: 16px;
}

.cookie-floating-body {
    padding: 20px;
    text-align: left;
}

.cookie-floating-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
}

.cookie-floating-body a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.cookie-floating-body a:hover {
    text-decoration: underline;
}

.cookie-floating-footer {
    padding: 15px 20px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
}

.btn-cookie-floating-accept {
    padding: 10px 25px;
    border: 1px solid #ff6600;
    border-radius: 8px;
    background: transparent;
    color: #ff6600;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cookie-floating-accept:hover {
    background: #ff6600;
    color: white;
}

/* Responsive for Floating */
@media (max-width: 768px) {
    .cookie-floating {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
    }
    
    .cookie-floating-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-floating-header {
        padding: 12px 15px;
    }
    
    .cookie-floating-body {
        padding: 15px;
    }
    
    .cookie-floating-footer {
        padding: 12px 15px;
    }
}