:root {
    --primary-color: #7371fc;
    --secondary-color: #5e548e;
    --border-color: #e6e6e6;
    --background-color: #f2ebfb;
    --text-color: #231942;
    --highlight-color: #757bc8;
    --link-color: #808080; /* Cinza para links */
    --link-hover-color: #3772ff; /* Laranja ao passar o mouse */
}

body {
    font-family: Prompt, Verdana, sans-serif;
    color: var(--secondary-color);
    font-size: 10px;
}

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

th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

th {
    background-color: var(--primary-color);
    color: white;
}

#previewImage {
    display: none;
    position: fixed;
    max-width: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--primary-color);
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

audio {
    max-width: 100%;
    display: block;
    margin-bottom: 10px;
}

#checkboxContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    color: var(--highlight-color);
    background-color: var(--background-color);
    padding: 10px;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-color);
}

.compare-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 20px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    width: 80%;
    height: 80%;
    overflow: auto;
    border-radius: 20px;
}

.popup-content div {
    display: inline-block;
    width: 48%;
    text-align: center;
}

.popup-content img, .popup-content audio {
    max-width: 100%;
    margin-bottom: 10px;
}

.popup-content p {
    font-size: 12px;
    color: var(--text-color);
}

.close-popup {
    display: block;
    text-align: right;
    margin-bottom: 10px;
}

.close-popup button {
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 20px;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.button-group {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 10px auto;
}

button-group .compare-button {
	display: flex;
	justify-content: flex-start;
	margin: 0;
	padding: 5px 10px; /* Ajuste o tamanho do padding conforme necessário */
	font-size: 12px; /* Ajuste o tamanho da fonte conforme necessário */
	margin: 0;
}

/* Estilo para links */
a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: var(--link-hover-color);
}


