* {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.custom-button {
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: #002c53; /* Cor de fundo do botão */
    color: white; /* Cor do texto */
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
}

.custom-button img {
    width: 25px;
    margin-right: 8px;
}

.info {
    font-size: 16px;
}

.info a:link {
    text-decoration: none;
}

.custom-button:hover {
    background-color: #1f2b4a; /* Cor ao passar o mouse */
}

.custom-button i {
    font-size: 24px;
    margin-right: 10px;
}

.check-options label {
    font-size: 18px;
}

.check-options input {
    margin-right: 10px;
    border: 1px solid #002c53ad;
    width: 18px;
    height: 18px;
}

.row-header {
    background-color: #e1e1e1;
    font-weight: bold;
    font-size: 14px;
    height: 50px;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.row-content {
    border-bottom: 1px solid #dee2e6;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    padding: 10px 0px 10px 0px;
}

.row-content div, .row-header div {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}
.status-button {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 0.25rem;
    color: #fff;
    border: none;
    width: 120px;
}

.details span {
    font-size: 18px;
    font-weight: 600;
    color: #002c53;
    cursor: pointer;
}

.icones {
    flex-direction: row !important;
}

.icones img {
    width: 30px;
}

.icones i {
    font-size: 25px;
}

.icones div {
    margin-right: 15px;
}

.stars, .icones {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 5px; 
    flex-direction: row !important;
}

.msg-notifica {
    margin-bottom: 20px;
    margin-left: 10px;
    font-size: 13px !important;
    color: #F44336;
    position: absolute;
    border-radius: 50%;
    animation: shadow-pulse 1s infinite;
}

.layout-mobile {
    display: none;
}

.layout-mobile-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.accordion-button {
    border-bottom: 1px solid silver !important;  
}

.div-info {
    display: flex;
    justify-content: center;
}

@media(max-width: 767px) {
    .layout-mobile {
        display: block;
    }

    .row-content, .row-header {
        display: none !important;
    }

    .check-options {
        flex-direction: column;
    }

    .div-info {
        display: block;
    }
}