.section-policies {
    margin: 2rem;
    text-align: center;
}

.section-policies h3 {
    color: var(--purple);
}

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

.policy-name {
    font-weight: 600;
}

.policy-table tr {
    border: 1px solid black;
}

.policy-table tr,
.policy-table td,
.policy-table th {
    border: 1px solid black;
}

.policy-table thead {
    background-color: var(--purple);
}

.policy-table thead tr th {
    color: white;
    font-size: 0.8rem;
}

.policy-table th,
td {
    padding: 0.5rem;
}

.policy-table tbody tr td svg {
    width: 30px;
    color: var(--purple);
}

.policy-table tbody tr td {
    font-size: 0.8rem;
}

#pdfContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.btn-section {
    margin: 10px;
}

.back-btn {
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    background-color: var(--purple);
    padding: 5px;
    border-radius: 5px;
    transition: transform 0.3s ease, border-radius 0.3s ease;
}

.back-btn:hover {
    transform: scale(1.2);
    border-radius: 8px;
}