.arquiorca-atalhos {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

.form-mensagem {
    margin-bottom: 40px;
}

.status.aguardando {
    background: #ffc107;
    padding: 4px 8px;
    border-radius: 4px;
    color: #000;
    font-weight: bold;
}
.arquiorca-mensagens-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 20px;
    align-items: start;
}

.mensagem-form {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.mensagem-tabela {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow-x: auto;
}

.copiar-btn {
    margin-bottom: 5px;
}

.button-danger {
    background: #dc3232;
    color: #fff;
    border: none;
}
.button-danger {
    background: #dc3232;
    color: white;
}
.arquiorca-servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.servico-item {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.servico-item:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.servico-item input[type="checkbox"] {
    margin-right: 8px;
}

.servico-detalhes ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    color: #555;
}

.totalizador-servicos {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
    border-radius: 6px;
}
.arquiorca-prazos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.prazo-item {
    display: block;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    transition: box-shadow 0.2s ease;
    cursor: pointer;
}

.prazo-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.prazo-item input[type="checkbox"] {
    margin-right: 8px;
}

.prazo-detalhes p {
    margin: 5px 0;
    font-size: 13px;
    color: #555;
}
#tab-modelo .preview-modelo {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-height: 600px;
    overflow-y: auto;
}
.status {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
}

.status.aguardando-envio { background: #ffc107; color: #000; }
.status.enviado { background: #17a2b8; }
.status.aguardando-resposta { background: #6c757d; }
.status.rejeitado { background: #dc3545; }
.status.aprovado { background: #28a745; }

.arquiorca-mensagens-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0 30px 0;
}

@media (max-width: 1400px) {
    .arquiorca-mensagens-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .arquiorca-mensagens-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .arquiorca-mensagens-cards {
        grid-template-columns: 1fr;
    }
}

.mensagem-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mensagem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.mensagem-card-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.mensagem-card-header h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mensagem-funcao {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mensagem-card-body {
    padding: 20px;
    flex-grow: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #f5f5f5;
    position: relative;
}

.mensagem-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #128C7E;
}

.mensagem-card-body p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    max-height: 150px;
    overflow-y: auto;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    position: relative;
}

.mensagem-card-body p::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
}

.mensagem-card-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 8px;
    padding: 0 15px 15px;
}

.mensagem-card-actions .button {
    padding: 6px 10px;
    font-size: 12px;
    height: auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 15px;
    transition: all 0.2s ease;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mensagem-card-actions .button .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-right: 0;
}

.mensagem-card-actions .copiar-btn {
    background-color: #25D366;
    border-color: #1EA855;
    color: #fff;
}

.mensagem-card-actions .copiar-btn:hover {
    background-color: #1EA855;
}

.mensagem-card-actions .editar-btn {
    background-color: #34B7F1;
    border-color: #0F9BD7;
    color: #fff;
}

.mensagem-card-actions .editar-btn:hover {
    background-color: #0F9BD7;
}

.mensagem-card-actions .button-danger {
    background-color: #FF3B30;
    border-color: #D63125;
    color: #fff;
}

.mensagem-card-actions .button-danger:hover {
    background-color: #D63125;
}

.mensagem-card-footer {
    padding: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #fff;
    justify-content: center;
}

.mensagem-card-footer .button {
    padding: 8px 15px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    border-radius: 30px;
    min-width: 90px;
    transition: all 0.2s ease;
    font-weight: 500;
    border: none;
}

.mensagem-card-footer .button:not(.button-danger) {
    background: #f0f0f0;
    color: #333;
}

.mensagem-card-footer .button:not(.button-danger):hover {
    background: #e0e0e0;
}

.mensagem-card-footer .button.copiar-btn {
    background: #DCF8C6;
    color: #075E54;
}

.mensagem-card-footer .button.copiar-btn:hover {
    background: #c5eaad;
}

.mensagem-card-footer .button.editar-btn {
    background: #34B7F1;
    color: #fff;
}

.mensagem-card-footer .button.editar-btn:hover {
    background: #0f9bd7;
}

.mensagem-card-footer .button-danger {
    background: #f15c5c;
    color: #fff;
}

.mensagem-card-footer .button-danger:hover {
    background: #e53e3e;
}

.mensagem-card-footer .dashicons {
    font-size: 16px;
    height: 16px;
    width: 16px;
}

.mensagem-vazia {
    grid-column: 1 / -1;
    background: #f7f7f7;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: #666;
    border: 2px dashed #ddd;
}

.arquiorca-form-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.arquiorca-form-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 18px 25px;
    color: #fff;
    position: relative;
}

.arquiorca-form-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.arquiorca-form-header .dashicons {
    font-size: 20px;
    height: 20px;
    width: 20px;
}

.arquiorca-form-body {
    padding: 30px;
    background-color: #E5DDD5;
    background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23128c7e' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 30a30 30 0 1 1 60 0 30 30 0 1 1-60 0zm30-10a10 10 0 1 0 0 20 10 10 0 1 0 0-20zM0 60a30 30 0 1 1 60 0 30 30 0 1 1-60 0zm30-10a10 10 0 1 0 0 20 10 10 0 1 0 0-20zM30 0a30 30 0 1 1 0 60 30 30 0 1 1 0-60zm0 50a20 20 0 1 0 0-40 20 20 0 1 0 0 40z'/%3E%3C/g%3E%3C/svg%3E");
}

.arquiorca-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 5px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #075E54;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.form-group label .dashicons {
    color: #25D366;
    font-size: 18px;
    height: 18px;
    width: 18px;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    background-color: #F5F5F5;
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
    outline: none;
    background-color: #fff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    background-color: #F5F5F5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23128c7e' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    padding: 15px;
}

.select-estilizado {
    height: 48px; /* Aumentando a altura para combinar com o campo de texto */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="8"><path d="M1 1l6 6 6-6" stroke="%23128C7E" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-position: calc(100% - 15px) center;
    background-repeat: no-repeat;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.mensagem-dicas {
    margin-top: 10px;
    color: #666;
    background: #DCF8C6;
    padding: 10px 15px;
    border-radius: 8px;
    position: relative;
    margin-left: 15px;
    border-top-left-radius: 0;
}

.mensagem-dicas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid #DCF8C6;
    border-left: 10px solid transparent;
}

.mensagem-dicas p {
    margin: 0;
    font-size: 13px;
    color: #075E54;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: flex-end;
}

.form-actions .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    height: auto;
    min-height: 45px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    min-width: 140px;
}

.form-actions .button-primary {
    background: #25D366;
    color: #fff;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.form-actions .button-primary:hover {
    background: #1fba58;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.form-actions .button:not(.button-primary) {
    background: #f0f0f0;
    color: #333;
}

.form-actions .button:not(.button-primary):hover {
    background: #e0e0e0;
}

.form-actions .dashicons {
    font-size: 18px;
    height: 18px;
    width: 18px;
}

.mensagem-card-timestamp {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mensagem-card-timestamp .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.mensagem-status {
    text-align: right;
    margin-top: 5px;
    padding-right: 5px;
}

.mensagem-check {
    position: relative;
    display: inline-block;
}

.mensagem-check .dashicons {
    color: #34B7F1;
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-left: -8px;
}

.mensagem-check .dashicons:first-child {
    margin-left: 0;
}

.whatsapp-status {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.whatsapp-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

h2 .dashicons-whatsapp {
    color: #25D366;
    margin-right: 5px;
    font-size: 24px;
    width: 24px;
    height: 24px;
    vertical-align: text-bottom;
}

@media (max-width: 768px) {
    .arquiorca-form-header h3 {
        font-size: 16px;
    }
    
    .whatsapp-status {
        right: 15px;
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .button {
        width: 100%;
    }
}

/* Barra de formatação de texto estilo WhatsApp */
.whatsapp-toolbar {
    display: flex;
    align-items: center;
    background-color: #F0F2F5;
    border-radius: 8px 8px 0 0;
    padding: 8px 12px;
    margin-bottom: 0;
    border: 1px solid #ddd;
    border-bottom: none;
}

.format-btn, .emoji-btn {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 4px;
    color: #54656F;
}

.format-btn:hover, .emoji-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #128C7E;
}

.format-btn.active, .emoji-btn.active {
    background-color: rgba(18, 140, 126, 0.1);
    color: #128C7E;
}

.format-btn .dashicons, .emoji-btn .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.toolbar-divider {
    width: 1px;
    height: 24px;
    background-color: #ddd;
    margin: 0 8px;
}

/* Seletor de emojis */
.emoji-picker {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 320px;
    z-index: 1000;
    margin-top: 5px;
}

.emoji-categories {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 8px;
    background-color: #F0F2F5;
    border-radius: 8px 8px 0 0;
}

.emoji-category {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 2px;
    color: #54656F;
}

.emoji-category:hover, .emoji-category.active {
    background-color: rgba(18, 140, 126, 0.1);
    color: #128C7E;
}

.emoji-category .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.emoji-container {
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.emoji-group {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
}

.emoji {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.emoji:hover {
    background-color: #F0F2F5;
}

.emoji-search {
    padding: 8px;
    border-top: 1px solid #eee;
}

.emoji-search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 13px;
    background-color: #F5F5F5;
}

/* Ajuste para o textarea quando a barra de formatação está ativa */
.form-group textarea {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;
    resize: vertical;
}

/* Estilos para os ícones de ação na tabela de orçamentos */
.widefat td .dashicons {
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.2s ease;
    color: #555;
    font-size: 18px;
    width: 18px;
    height: 18px;
    position: relative;
}

.widefat td .dashicons:hover {
    transform: scale(1.2);
}

.widefat td .dashicons-edit:hover {
    color: #34B7F1;
}

.widefat td .dashicons-trash:hover {
    color: #FF3B30;
}

.widefat td .dashicons-yes:hover {
    color: #25D366;
}

.widefat td .dashicons-admin-links:hover {
    color: #6B64EC;
}

/* Tooltip para o botão de copiar link */
.copiar-link-btn {
    position: relative;
}

.copiar-link-btn.copiado::after {
    content: "Copiado!";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 100;
    animation: fadeOut 2s forwards;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Estilos para a tabela de orçamentos */
.arquiorca-table-container {
    margin-top: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.arquiorca-table-container .widefat {
    border: none;
    margin: 0;
}

.arquiorca-table-container .widefat th {
    background-color: #f9f9f9;
    padding: 12px 15px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.arquiorca-table-container .widefat td {
    padding: 12px 15px;
    vertical-align: middle;
}

.arquiorca-table-container .status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    min-width: 80px;
}

.arquiorca-table-container .status.aguardando {
    background-color: #FFF3CD;
    color: #856404;
}

.arquiorca-table-container .status.enviado {
    background-color: #D4EDDA;
    color: #155724;
}

.arquiorca-table-container .status.cancelado {
    background-color: #F8D7DA;
    color: #721C24;
}

.arquiorca-table-container .status.aprovado {
    background-color: #CCE5FF;
    color: #004085;
}

.arquiorca-table-container .whatsapp-btn {
    background-color: #25D366;
    border-color: #1EA855;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 15px;
}

.arquiorca-table-container .whatsapp-btn:hover {
    background-color: #1EA855;
}

.arquiorca-table-container .whatsapp-btn .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.arquiorca-table-container .sem-whatsapp {
    font-style: italic;
    color: #999;
    font-size: 12px;
}

.arquiorca-table-container .acoes-coluna {
    white-space: nowrap;
}

.arquiorca-table-container .orcamentos-vazios {
    text-align: center;
    padding: 30px 15px !important;
}

.arquiorca-table-container .orcamentos-vazios p {
    margin: 0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.arquiorca-table-container .orcamentos-vazios .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #999;
}

.arquiorca-table-container .ver-todos-link {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}
