.icegram-cm-cookie-info-container {
    z-index: 9999;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #e5e7eb;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: slideUp 0.3s ease-out;
    border-radius: 12px 12px 0 0;
}

/* Hide banner */
.icegram-cm-cookie-info-container.icegram-cm-hidden {
    display: none;
}

/* Message styling */
.icegram-cm-cookie-info {
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
    text-align: center;
    max-width: 90%;
}

.icegram-cm-cookie-info a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: underline;
}

.icegram-cm-cookie-info a:hover {
    color: #1e40af;
}

/* Button group */
.icegram-cm-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* Buttons */
button.icegram-cm-cookie-accept-button,
button.icegram-cm-cookie-privacy-policy {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

button.icegram-cm-cookie-accept-button:hover,
button.icegram-cm-cookie-privacy-policy:hover {
    background-color: #1e40af;
}

button.icegram-cm-cookie-privacy-policy {
    background-color: #f3f4f6;
    color: #111827;
    box-shadow: none;
    border: 1px solid #d1d5db;
}

button.icegram-cm-cookie-privacy-policy:hover {
    background-color: #e5e7eb;
}

/* Focus state */
button:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .icegram-cm-cookie-info {
        font-size: 14px;
    }

    .icegram-cm-buttons {
        flex-direction: column;
        gap: 8px;
    }

    button.icegram-cm-cookie-accept-button,
    button.icegram-cm-cookie-privacy-policy {
        width: 100%;
    }
}