#cookie-manage,
    #cookie-reject {
        background-color: transparent;
        color: #020202;
    }
    #cookie-banner,
    #cookie-preferences {
        width: 100%;
        box-sizing: border-box;
        left: 0;
    }
    #cookie-banner,
    #cookie-icon,
    #cookie-preferences {
        display: none;
        position: fixed;
    }
    #cookie-icon,
    #cookie-banner{
      background-color: #f0f0f0;
    }
    
    #cookie-prefs-save {
        background-color: #28a745;
    }
    #cookie-banner {
        bottom: 0;
        color: #ffffff;
        z-index: 99999;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }
    #cookie-banner-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 16px 24px;
    }
    #cookie-text {
        flex: 1;
        min-width: 200px;
        font-size: 0.875rem;
        line-height: 1.5;
        margin: 0;
        color: #000000;
    }
    #cookie-text a {
        color: #000000;
        text-decoration: underline;
    }
    #cookie-buttons {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
        flex-wrap: wrap;
    }
    #cookie-manage {
        border: 1px solid rgba(0, 0, 0, 0.5);
        padding: 8px 16px;
        border-radius: 5px;
        font-size: 0.8rem;
        cursor: pointer;
        font-family: Arial, sans-serif;
    }
    #cookie-accept,
    #cookie-reject {
        padding: 8px 20px;
        font-size: 0.875rem;
        cursor: pointer;
        font-family: Arial, sans-serif;
    }
    #cookie-reject {
        border: 2px solid #000000;
        border-radius: 5px;
        font-weight: 700;
    }
    #cookie-accept,
    .cookie-toggle input:checked + .cookie-toggle-slider {
        background-color: #de2f1b;
    }
    #cookie-accept,
    #cookie-prefs-save {
        color: #f0f0f0;
        border: none;
        font-weight: 700;
    }
    #cookie-accept {
        border-radius: 5px;
    }
    #cookie-manage:hover,
    #cookie-reject:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    #cookie-accept:hover {
        background-color: #c02818;
    }
    #cookie-preferences {
        top: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 999999;
        align-items: center;
        justify-content: center;
    }
    #cookie-prefs-inner {
        background: #f0f0f0;
        border-radius: 10px;
        padding: 30px;
        max-width: 500px;
        width: 90%;
        color: #333;
    }
    #cookie-prefs-title {
        margin: 0 0 20px;
        font-size: 1.1rem;
        color: #000000;
    }
    #cookie-prefs-cancel,
    #cookie-prefs-save {
        padding: 8px 20px;
        font-family: Arial, sans-serif;
        font-size: 0.875rem;
        cursor: pointer;
    }
    .cookie-pref-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        border-bottom: 1px solid #f0f0f0;
    }
    .cookie-pref-info strong {
        display: block;
        font-size: 0.9rem;
        color: #000000;
        margin-bottom: 4px;
    }
    .cookie-pref-info p {
        font-size: 0.8rem;
        color: #000000;
        margin: 0;
        line-height: 1.4;
    }
    .cookie-always-on {
        font-size: 0.75rem;
        color: #28a745;
        font-weight: 700;
        white-space: nowrap;
        padding-top: 2px;
        flex-shrink: 0;
    }
    .cookie-toggle {
        position: relative;
        display: inline-block;
        width: 44px;
        height: 24px;
        flex-shrink: 0;
    }
    .cookie-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    .cookie-toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        border-radius: 24px;
        transition: 0.3s;
    }
    .cookie-toggle-slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: #fff;
        border-radius: 50%;
        transition: 0.3s;
    }
    .cookie-toggle input:checked + .cookie-toggle-slider:before {
        transform: translateX(20px);
    }
    #cookie-prefs-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 20px;
    }
    #cookie-prefs-cancel {
        background: 0 0;
        border: 1px solid #000000;
        border-radius: 5px;
    }
    #cookie-prefs-save {
        border-radius: 5px;
    }
    #cookie-prefs-cancel:hover {
        background-color: #f5f5f5;
    }
    #cookie-icon:hover,
    #cookie-prefs-save:hover {
        background-color: #28a745;
    }
    #cookie-icon {
        bottom: 80px;
        left: 20px;
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 9999;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    @media (max-width: 600px) {
        #cookie-banner-inner {
            flex-direction: column;
            align-items: flex-start;
        }
        #cookie-buttons {
            width: 100%;
            justify-content: flex-end;
        }
    }