/* General banner styles */
#ccp-cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2147483647;
    background-color: #ffffff; /* Default background, may be overridden by dynamic CSS */
    color: #333;             /* Default text color, may be overridden by dynamic CSS */
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    min-height: 100px;
    transition: opacity 0.3s ease-in-out;
}

/* Text styling */
#ccp-cookie-banner p {
    margin: 0 0 15px;
    font-size: 12px;
    color: #333;
    text-align: left;
}

/* General button styles */
#ccp-cookie-banner button {
    cursor: pointer;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 14px;
    transition: background-color 0.2s;
    margin: 5px 5px 0 0;
}

#ccp-cookie-banner button:hover {
    opacity: 0.9;
}

/* Preferences screen styles */
#ccp-banner-preferences h2 {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 10px;
}