body {
    margin: 0;
/*    font-family: sans-serif;	*/
}

.cookie-popup {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    left: 20px;  /* Distance from the left */
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden by default */
    z-index: 1000; /* Ensure it's on top of other content */
    opacity: 0;
    transform: translateX(-100%); /* Start off-screen to the left */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.cookie-popup.show {
    opacity: 1;
    transform: translateX(0); /* Slide into view */
    display: block; /* Ensure it's block during show */
}

.cookie-popup.hide {
    opacity: 0;
    transform: translateX(-100%); /* Slide off-screen to the left */
    pointer-events: none; /* Prevent clicks on the hidden popup */
}

.cookie-popup p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-popup p a {
    color: #87CEEB; /* Light blue for the link */
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px; /* Space between buttons */
}

.cookie-popup button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cookie-popup .allow-button {
    background-color: #4CAF50; /* Green */
    color: white;
}

.cookie-popup .allow-button:hover {
    background-color: #45a049;
}

.cookie-popup .deny-button {
    background-color: #f44336; /* Red */
    color: white;
}

.cookie-popup .deny-button:hover {
    background-color: #da190b;
}

/* Styles for the new cookie tab */
.cookie-tab {
    position: fixed;
    bottom: 20px;
    left: 0;
    background-color: #333; /* A slightly different dark color */
    color: #fff;
    padding: 10px 15px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    z-index: 999; /* Slightly lower z-index than the popup */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    /* Changed: Start slightly showing */
    transform: translateX(-80%); /* Only 20% visible initially */
    transition: transform 0.3s ease-in-out; /* Smoother transition */
    display: none; /* Hidden by default until needed */
    font-size: 13px;
    writing-mode: vertical-rl; /* Rotate text for a tab effect */
    text-orientation: mixed;
    white-space: nowrap; /* Prevent text wrapping */
    transform-origin: left; /* Ensure it slides from the left edge */
}

/* New: Hover effect for the tab */
.cookie-tab:hover {
    transform: translateX(0); /* Slide fully into view on hover */
    background-color: #777; /* Slight color change on hover */
}

.cookie-tab.show-tab {
    transform: translateX(-80%); /* Ensure it's in its partially hidden state */
    display: block; /* Ensure it's block during show */
}