
.whats-link {

    background-color: #25D366;
    color: white;
    border-radius: 4px;
    padding: 8px;
}

#appointments-card-container{

    display: flex;
    flex-direction: column;
    margin-top: 16px;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
         
        #table-h {
            display: none;
        }

        .card-appointment {
            display: block;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 16px;
            margin: 8px 0; /* Reduzindo margin para ajuste */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            width: 100%; /* Garante que o card ocupe toda a largura do container */
            background-color: #fff;
        }
    

    .card-appointment-header {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .card-appointment-header img {
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }

    .card-appointment-body {
        margin-top: 8px;
    }

    .card-appointment-footer {
        display: flex;
        justify-content: flex-end;
        gap: 8px;
        margin-top: 12px;
    }
}