#ac-cookie-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 20px 24px;
    max-width: 64rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 9999;
    display: none;
    font-family: system-ui, sans-serif;
    color: #1e1e1e;
}

.ac-cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ac-cookie-header .ac-close-button {
    position: relative;
    top: -0.5em;
    right: -0.5em;
    background: transparent;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    color: #1e1e1e;
}

.ac-cookie-header .ac-cookie-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 1rem;
}

.ac-cookie-message {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.ac-cookie-message a {
    color: #111111;
    text-decoration: underline;
}

.ac-cookie-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.ac-cookie-buttons button {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

#ac-accept {
    background-color: #111111;
    color: #fff;
    border: none;
}

#ac-reject {
    background-color: #fff;
    color: #1e1e1e;
    border: 1px solid #ccc;
}