.odp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7); /* działa wszędzie */
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    max-height: 90vh;
    overflow-y: auto;
}

.odp-cookie-banner.opened {
    transform: translateY(0);
}

.odp-cookie-banner.closed {
    transform: translateY(100%);
    display: none;
}

.odp-cookie-container {
    max-width: 1200px;
    margin: 0 auto;
}

.odp-cookie-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 30px;
}

.odp-cookie-header {
    border-bottom: 2px solid #21816d;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.odp-cookie-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.odp-cookie-title span {
    color: #21816d;
}

.odp-cookie-body {
    margin-bottom: 25px;
}

.odp-cookie-section {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    height: 100%;
    border-left: 3px solid #21816d;
}

.odp-cookie-section-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.odp-cookie-section-title span {
    color: #21816d;
    font-size: 1rem;
}

.odp-cookie-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.odp-cookie-link {
    color: #21816d;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.odp-cookie-link:hover {
    color: #1a6b5a;
    text-decoration-thickness: 2px;
}

.odp-cookie-footer {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.odp-cookie-accept-btn {
    background: linear-gradient(135deg, #21816d 0%, #1a6b5a 100%);
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 129, 109, 0.3);
}

.odp-cookie-accept-btn:hover {
    background: linear-gradient(135deg, #1a6b5a 0%, #155a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 186, 160, 0.4);
    color: #ffffff;
}

.odp-cookie-accept-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .odp-cookie-banner {
        padding: 15px;
    }
    
    .odp-cookie-content {
        padding: 20px;
    }
    
    .odp-cookie-title {
        font-size: 1.25rem;
    }
    
    .odp-cookie-section {
        margin-bottom: 15px;
    }
    
    .odp-cookie-accept-btn {
        width: 100%;
        padding: 14px 30px;
    }
}

