/* Pop-up styling */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none; /* Skjult som standard */
}

.cookie-popup p {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.cookie-popup button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.cookie-popup button:hover {
    background-color: #45a049;
}

