@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0px;
    font-family: "Barlow", sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #074F77;
    font-weight: 700;
    font-size: 64px;
}

table {
    border-radius: 15px;
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(to right, #085078, #0E93DC);

}


thead th {
    border: 1px solid #000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    text-align: left;
}

tbody td {
    /* padding: 10px; */
    border: 1px solid #000;
}

.toggle-details {
    margin-left: 10px;
    margin-right: 10px;
    align-items: center;
}

.blue {
    background-color: #C9EFFF;
}

.details {
    display: none;
    /* margin-top: 10px; */
    /* padding: 10px; */
    /* background-color: #f1f1f1; */
    border-radius: 4px;
}

.title {
    /* padding-top: 20px; */
    padding: 10px 20px;
}

.question {
    display: flex;
    padding: 20px;
    text-align: justify;
    align-items: center;
    justify-content: space-between;
}

.yes-no {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status {
    display: flex;
    align-items: center;
    text-align: center;
    font-weight: bold;
    width: 118px;
    margin-left: 20px;
}

.status p {
    margin: 16px 0px 16px 20px;
}

.text-center {
    padding: 20px 0px;
    text-align: justify;
}

/* Remover o estilo padrão do radio button */
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 2px solid #074F77;
    padding: 7px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

/* Estilo quando o radio button está selecionado */
input[type="radio"]:checked {
    background-color: #074F77;
    border-color: #074F77;
}

/* Efeito hover */
input[type="radio"]:hover {
    border-color: #074F77;
    /* background-color: #e6f2f7; */
}

/* Estilo para a borda externa ao focar */
input[type="radio"]:focus {
    outline: none;
    /* box-shadow: 0 0 3px 3px rgba(7, 79, 119, 0.3); */
}


/* Remover o estilo padrão do checkbox */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 2px solid #074F77;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

/* Estilo quando o checkbox está marcado */
input[type="checkbox"]:checked {
    background-color: #074F77;
    border-color: #074F77;
}

/* Adicionar a marca de seleção (checkmark) */
input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 0px;
    left: 3px;
}

/* Efeito hover */
input[type="checkbox"]:hover {
    border-color: #074F77;
}

/* Estilo para a borda externa ao focar */
input[type="checkbox"]:focus {
    outline: none;
}

@media screen and (max-width: 440px) {
    .container {
        padding: 10px;
    }

    h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    thead th {
        font-size: 14px;
        padding: 8px;
    }

    tbody td {
        padding: 10px;
    }

    .title {
        padding: 10px;
    }

    .question {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .yes-no {
        margin-left: 0;
        gap: 10px;
    }

    .status {
        margin-left: 0;
        width: 100%;
        text-align: left;
    }

    .status p {
        margin: 10px 0;
    }

    .text-center {
        padding: 10px 0;
    }
}
