body {
    font-family: 'Inter', sans-serif;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 40;
    padding-top: 80px;
}

.mobile-menu.active {
    display: block;
}

.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .desktop-menu {
        display: none;
    }
}

/* Dashboard custom styles */
.dashboard-card {
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 16px;
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.07);
    background: #fff;
    padding: 2.5rem 2rem 2rem 2rem;
}
.waffle-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #ff3399;
    letter-spacing: -2px;
}
.waffle-logo span { color: #ffc700; }
/* Ajuste para tabela de contatos */
.table td, .table th {
    word-break: break-word;
    white-space: normal;
    vertical-align: middle;
}
@media (max-width: 900px) {
    .table td, .table th {
        padding: 0.4rem 0.3rem;
        font-size: 0.95rem;
    }
}
/* Limitar largura máxima das colunas longas */
.table td:nth-child(4), /* Email */
.table td:nth-child(5), /* Mensagem */
.table th:nth-child(4),
.table th:nth-child(5) {
    max-width: 220px;
} 