.resultado {
    display: none;
    margin-top: 20px;
    background: #eef2f4;
    padding: 15px;
    border-radius: 10px;
}

.topo {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check {
    width: 50px;
    height: 50px;
    background: #02920e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    flex-shrink: 0;
}

.resultado h1 {
    font-size: 18px;
    line-height: 26px;
    color: rgb(61, 61, 61);
    margin-top: 2px;
}

.texto {
    font-size: 16px;
    color: rgb(61, 61, 61);
}

.calendario-box {
    background: white;
    margin-top: 5px;
    border-radius: 10px;
}

.mes {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

table {
    width: 100%;
}

th {
    padding: 5px;
    font-size: 16px;
    color: rgb(61, 61, 61);
}

td {
    height: 50px;
    text-align: center;
    font-size: 18px;
    position: relative;
}

.fertil {
    background: #e5eaf8;
}

.fertil::after {
    content: "💧";
    display: block;
    font-size: 18px;
    color: #e5eaf8;
}

.ovulacao {
    background: #fcecf7;
    font-weight: bold;
}

.ovulacao::after {
    content: "❤️";
    display: block;
    font-size: 18px;
    color: #e46ab7;
}

.legendaspan {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 16px;
    color: rgb(61, 61, 61);
}

.resultado h1 {
    font-size: 20px;
}

.texto {
    font-size: 18px;
}

.mes {
    font-size: 18px;
}

th {
    font-size: 16px;
}

td {
    height: 50px;
    font-size: 16px;
}

@media(max-width:728px) {
    .check {
        width: 50px;
        height: 50px;
        background: #02920e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 25px;
        font-weight: bold;
        flex-shrink: 0;
    }

    .resultado h1 {
        font-size: 15px;
        margin: 0px;
    }

    .texto {
        font-size: 16px;
    }

    .mes {
        font-size: 15px;
    }

    td {
        height: 50px;
        font-size: 15px;
    }

    th {
        font-size: 15px;
        color: rgb(61, 61, 61);
    }

    .legendaspan {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        font-size: 15px;
        color: rgb(61, 61, 61);
    }
}