.cl-analytics-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f9f9f9; /* Lighter background */
    color: #333; /* Darker text for readability */
    padding: 20px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
    z-index: 100000;
    box-sizing: border-box;
    display: none; /* Hidden by default, shown by JS */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.cl-analytics-cookie-banner.cl-banner-show {
    display: block;
}

.cl-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px; /* Slightly narrower for better centering */
    margin: 0 auto;
}

.cl-banner-message {
    margin: 0;
    margin-right: 25px; /* More space between message and buttons */
    flex-grow: 1;
}

.cl-banner-message a {
    color: #007cba; /* WordPress Blue for links */
    text-decoration: underline;
}

.cl-banner-message a:hover {
    color: #005a87; /* Darker WordPress Blue */
    text-decoration: none;
}

.cl-banner-actions button {
    border: none;
    padding: 10px 18px; /* Slightly larger buttons */
    margin-left: 12px;
    cursor: pointer;
    border-radius: 4px; /* Softer corners */
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.cl-banner-actions button.cl-banner-accept {
    background-color: #007cba; /* WordPress Blue */
    color: #fff;
}

.cl-banner-actions button.cl-banner-accept:hover {
    background-color: #005a87;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cl-banner-actions button.cl-banner-deny {
    background-color: #e0e0e0; /* Lighter gray for deny */
    color: #333;
}

.cl-banner-actions button.cl-banner-deny:hover {
    background-color: #c7c7c7; /* Darker gray on hover */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 782px) { /* WordPress admin breakpoint */
    .cl-banner-content {
        flex-direction: column;
        align-items: center; /* Center items on mobile */
        text-align: center;
    }
    .cl-banner-message {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .cl-banner-actions {
        width: 100%;
        display: flex;
        justify-content: center; /* Center buttons on mobile */
    }
    .cl-banner-actions button {
        margin: 0 8px; /* Equal margin around buttons */
        flex-grow: 1; /* Allow buttons to grow */
        max-width: 180px; /* Max width for buttons on mobile */
    }
}

@media (max-width: 480px) {
    .cl-banner-actions {
        flex-direction: column; /* Stack buttons on very small screens */
    }
    .cl-banner-actions button {
        width: 100%;
        max-width: none;
        margin: 5px 0; /* Vertical margin */
    }
}
