/* CSS for the consent banner */
#consent-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#consent-banner .content {
    width: 80%;
    max-width: 500px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    text-align: left;
    color: black;
}

#consent-banner p {
    margin: 0 0 10px 0;
}

#consent-banner .buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
	justify-content: flex-end; /* Align to the right */
}

#consent-banner .buttons button {
    padding: 10px 20px;
    border: 2px solid lightgray; /* Add black border */
	min-width: 120px;
    cursor: pointer;
    color: white;
	border-radius: 6px;
}



#accept-all {
    background-color: darkgreen;	
}

#accept-all:hover {
    background-color: LimeGreen; /* Highlight on hover */
}

#deny-all {
    background-color: darkred;
}

#deny-all:hover  {
    background-color: red;
}

#consent-banner .links {
    display: flex;
    gap: 10px;
	justify-content: start; 
}

#consent-banner .links a {
    #text-decoration: underline;
}

/* #navigation { */
	/* background-color: lightgray; */
/* } */

/* Change the cursor to pointer to indicate clickable area */
.row-wrapper {
    cursor: pointer;
	background-color: lightgray;	
}

.row-wrapper td {
	padding: 6px;
	min-width: 160px;
}

/* Style for hover state */
.row-wrapper:hover {
    background-color: white;
	
}

