/**
 * Styles for the custom MU-Plugin components.
 */
#my-mu-plugin-cookie-notice {
    display: none; /* Initially hidden, JS will show if consent is missing */
    z-index: 10000; /* High z-index to ensure visibility */
    position: fixed;
    bottom: 5%;
    right: 5%;
    padding: 1em;
    max-width: 400px;
    background: #eeeeee;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: sans-serif;
}

.my-mu-plugin-cookie-title h4 {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 1.2em;
    color: #333;
}

.my-mu-plugin-cookie-content p {
    font-size: 0.9em;
    line-height: 1.4;
}

.my-mu-plugin-policy-link {
    color: #115cfa !important; /* Retained original color */
    text-decoration: underline;
}

.my-mu-plugin-cookie-buttons {
    text-align: right;
    margin-top: 1em;
}

.my-mu-plugin-cookie-buttons button {
    color: #fff;
    background-color: #32373c;
    border-radius: 9999px;
    cursor: pointer;
    font-size: 1.125em;
    padding: 0.6em 1.2em;
    border: none;
    transition: background-color 0.3s ease;
}

.my-mu-plugin-cookie-buttons button:hover {
  background-color: #1a1a1a;
}
