body {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

header {
    background: rgb(219, 6, 166);
    border-bottom: 1px solid #ccc;
    padding: 8px;
    display: flex;
}
.white-link {
    color: white !important;
}
.row {
    margin: 0;
}


container-fluid {
    padding: 0;
}

.products-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin: 20px;
    padding: 10px;
}


#products {
    max-width: 90%;
    border-radius: 20px;
    margin: 50px;
    padding: 0;
}
.card {
    margin: 20px; /* Add margin for separation */
}
#products img {
    height: auto;
    max-height: 700px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#cates {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 10px;
    padding: 10px;
}
.btn {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    margin-bottom: 10px; /* Adds space between rows */
    flex-basis: calc(
        33.33% - 10px
    ); /* Adjust based on your container width and margin */
}

a {
    color: white;
    text-decoration: none;
}

footer {
    background: rgb(219, 6, 166);
    margin-top: auto;
    padding-right: 15px;
}



dialog {
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    background: white;
}

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

.popup-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.popup-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

#button_aceitar {
    background-color: #215aa5;
    color: white;
}

#button_aceitar:hover {
    background-color: #003172;

}

#button_rejeitar {
    background-color: white;
    border: 1px solid black;


}

#button_rejeitar:hover {
    background-color: white;
    border: 3px solid black;

}
