/* Estilo do botão flutuante do WhatsApp */
#wbt-button {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: #25D366; /* verde oficial WhatsApp */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 9999;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

#wbt-button:hover {
    transform: scale(1.1);
}

/* Ajustes para tablets */
@media (max-width: 768px) {
    #wbt-button {
        width: 70px;
        height: 70px;
    }
}

/* Ajustes para celulares */
@media (max-width: 480px) {
    #wbt-button {
        width: 80px;
        height: 80px;
    }
}

/* Estilo da tabela de relatório no admin */
.wrap table.widefat {
    margin-top: 20px;
    border-collapse: collapse;
}

.wrap table.widefat th,
.wrap table.widefat td {
    padding: 8px 10px;
    text-align: left;
}

.wrap table.widefat th {
    background: #f1f1f1;
    font-weight: bold;
}

.wrap h2 {
    margin-top: 30px;
    color: #333;
}
