.zmcc-cookie-banner {
    position: fixed !important;
    bottom: 20px;
    left: 50%;
    width: 90%;
    max-width: 450px;
    background-color: #f7f7f7;
    color: #333;
    padding: 2rem;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.4s;
    transform: translate(-50%, 150%);
    border-radius: 12px;
}

.zmcc-cookie-banner:focus {
    outline: none;
}

.zmcc-cookie-banner.show {
    transform: translate(-50%, 0);
    visibility: visible;
}

.zmcc-cookie-banner__content {
    max-width: 800px;
    margin: 0 auto;
}

.zmcc-cookie-banner h2 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.zmcc-cookie-banner p {
    font-size: 1rem;
    color: #555;
}

.zmcc-consent-options-container {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 1.5rem auto;
    width: fit-content;
}

.zmcc-consent-option {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.zmcc-consent-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.zmcc-consent-option input[type="checkbox"]:focus {
    outline: 2px solid #2980b9;
    outline-offset: 2px;
}

.zmcc-info-tooltip {
    margin-left: 8px;
    font-size: 0.9rem;
    background: #555;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    position: relative;
    border: none;
    padding: 0;
}

.zmcc-info-tooltip:focus {
    outline: 2px solid #2980b9;
    outline-offset: 2px;
}

.zmcc-info-tooltip::after {
    content: attr(aria-label);
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #222;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: normal;
    width: max-content;
    max-width: 250px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    z-index: 10;
}

.zmcc-info-tooltip:hover::after,
.zmcc-info-tooltip:focus::after {
    opacity: 1;
    visibility: visible;
}

.zmcc-documentation-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #2980b9;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.zmcc-documentation-link:hover,
.zmcc-documentation-link:focus {
    color: #2c3e50;
    outline: 2px solid #2980b9;
    outline-offset: 2px;
}

.zmcc-cookie-banner__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.zmcc-cookie-button {
    background-color: #f0b440;
    color: #000;
    border: none;
    padding: 12px 24px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.zmcc-cookie-button:hover {
    background-color: #bd923e;
}

.zmcc-cookie-button:focus {
    outline: 2px solid #2c3e50;
    outline-offset: 2px;
}

.zmcc-cookie-button--secondary {
    background-color: #e2e2e2;
    color: #333;
}

.zmcc-cookie-button--secondary:hover {
    background-color: #cccccc;
}

.zmcc-floating-consent-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #2980b9;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s, transform 0.2s;
    visibility: hidden;
    opacity: 0;
}

.zmcc-floating-consent-button.show-btn {
    visibility: visible;
    opacity: 1;
}

.zmcc-floating-consent-button svg {
    width: 24px;
    height: 24px;
}

.zmcc-floating-consent-button:hover,
.zmcc-floating-consent-button:focus {
    background-color: #2c3e50;
    transform: scale(1.05);
    outline: 2px solid #2980b9;
    outline-offset: 2px;
}

.zmcc-cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.zmcc-cookie-table th,
.zmcc-cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.zmcc-cookie-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.zmcc-cookie-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
