/* CSS styles for the pop-up window */
.popup {
    display: none;
    position: fixed;
    top: 30%;
    right: 40%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

.popup-content {
    width: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
}

.popup-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.popup-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.popup-button {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

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