* {

    margin: 0px; 
    padding: 0px;
}


.new-service {

    background-color: #5149e5;
    color: white;
    font-weight: bold;
    padding: 4px;
    border: none;
    border-radius: 4px;

}

.remove-service {

    background-color: #b81c29;
    color: white;
    font-weight: bold;
    padding: 4px;
    border: none;
    border-radius: 4px;

}

.services-container {

    overflow-x: hidden;
}


#services-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.service-card .service-info {
    margin-top: 1rem;
}

.service-card .service-info span {
    display: block;
    font-size: 0.9rem;
    color: #555;
}

.service-card .service-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

/* Oculta a tabela em telas pequenas */
@media (max-width: 768px) {
    .table-responsive {
        display: none;
    }

    #services-container {
        display: flex;
    }
}
