/* ========================================
   LEADS - CSS ESPECÍFICO
   Estilos dedicados para a seção de leads
   ======================================== */

/* Container principal dos leads */
.leads-section {
    
    background: #f8f9fa;
    min-height: 100vh;
}

#addLeadForm{
padding: 15px;


}

/* Remover styles específicos do section-header para evitar interferência */
.leads-section .section-header {
    display: none;
}



/* Filtros com design moderno (herda do main.css e adiciona especificidades para leads) */
.filters {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.8);
    margin-bottom: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-end;
    flex-wrap: wrap;
    position: relative;
    backdrop-filter: blur(10px);
}

.filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    border-radius: 16px 16px 0 0;
}

/* Adicionar animação aos filtros quando carregam */
.filters {
    animation: slideInFromTop 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Container da tabela */
.table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Tabela de leads */
#leads-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
}

#leads-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    
}

#leads-table thead th {
    background: #f4f6fa;
    color: #495057;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e9ecef;
    padding: 14px 10px;
    position: relative;

}

#leads-table thead th::after {
    display: none;
}

#leads-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
}

#leads-table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#leads-table tbody td {
    padding: 16px 12px;
    vertical-align: middle;
    border: none;
}

/* Status badges melhorados */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.status-lead-captado {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
}

.status-primeiro-contato {
    background: linear-gradient(135deg, #fff3e0, #ffcc02);
    color: #f57c00;
}

.status-agendamento-feito {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.status-recontato-pendente {
    background: linear-gradient(135deg, #fff8e1, #fff176);
    color: #f9a825;
}

.status-proposta-enviada {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #388e3c;
}

.status-em-negociacao {
    background: linear-gradient(135deg, #e1f5fe, #b3e5fc);
    color: #0277bd;
}

.status-aprovado {
    background: linear-gradient(135deg, #e8f5e8, #a5d6a7);
    color: #2e7d32;
}

.status-reprovado {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #c62828;
}

.status-contrato-assinado {
    background: linear-gradient(135deg, #e8f5e8, #81c784);
    color: #1b5e20;
}

/* Potencial badges melhorados */
.potencial-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.potencial-alto {
    background: linear-gradient(135deg, #28a745, #34ce57);
    color: white;
}

.potencial-medio {
    background: linear-gradient(135deg, #ffc107, #ffcd39);
    color: #212529;
}

.potencial-baixo {
    background: linear-gradient(135deg, #6c757d, #8d969f);
    color: white;
}

/* Botões de ação melhorados */
.btn-sm {
    padding: 6px 10px;
    font-size: 12px;
    margin-right: 4px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-sm.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.btn-sm.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
}

.btn-sm.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.btn-sm i {
    font-size: 12px;
}

/* Botões de ação - IDÊNTICO AO CRM */
.btn-sm {
    padding: 6px 10px;
    font-size: 12px;
    margin-right: 4px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
}

.btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-sm.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.btn-sm.btn-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
}

.btn-sm.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.btn-sm i {
    font-size: 12px;
}

/* Tooltip para botões */
.btn-sm[title] {
    position: relative;
}

.btn-sm[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Remover estilos conflitantes de .btn-icon */
.btn-icon {
    /* Resetar para usar apenas .btn-sm */
    all: unset;
    display: none;
}

/* Tooltip para botões */
.btn-sm[title] {
    position: relative;
}

.btn-sm[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Mensagem de tabela vazia */
.table-container tbody tr td[colspan] {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
    font-size: 16px;

}

/* Controles de paginação para leads - UI/UX Elegante e Moderno */
.table-header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    border-radius: 8px 8px 0 0;
    font-size: 0.875rem;
    color: #495057;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.table-per-page {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.table-per-page:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.table-per-page label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-per-page select {
    padding: 0.5rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.table-per-page select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.table-per-page select:hover {
    border-color: #ced4da;
    background: #f8f9fa;
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pagination-info {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 600;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0 0.75rem;
}

.pagination-number {
    min-width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    background: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pagination-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.pagination-number:hover {
    background: #e9ecef;
    border-color: #ced4da;
    color: #495057;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pagination-number:hover::before {
    left: 100%;
}

.pagination-number.active {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-color: #007bff;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.pagination-number.active:hover {
    transform: scale(1.1) translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Estilo para elipses na paginação */
.pagination-ellipsis {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.875rem;
    user-select: none;
}

/* Melhorias nos botões First/Last */
#first-page-btn, #last-page-btn {
    padding: 0.625rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#first-page-btn::before, #last-page-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

#first-page-btn:hover, #last-page-btn:hover {
    border-color: #007bff;
    color: #007bff;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

#first-page-btn:hover::before, #last-page-btn:hover::before {
    left: 100%;
}

#first-page-btn:disabled, #last-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #adb5bd;
    transform: none;
    box-shadow: none;
}

/* Ajustes nos botões prev/next para ficarem menores */
#prev-page-btn, #next-page-btn {
    padding: 0.625rem 0.875rem;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 2.25rem;
}

#prev-page-btn::before, #next-page-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

#prev-page-btn:hover, #next-page-btn:hover {
    border-color: #007bff;
    color: #007bff;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

#prev-page-btn:hover::before, #next-page-btn:hover::before {
    left: 100%;
}

#prev-page-btn:disabled, #next-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #adb5bd;
    transform: none;
    box-shadow: none;
}

/* Responsividade para botões First/Last */
@media (max-width: 768px) {
    #first-page-btn, #last-page-btn {
        min-width: 2.5rem;
        height: 2.5rem;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    #first-page-btn, #last-page-btn {
        min-width: 2.25rem;
        height: 2.25rem;
        padding: 0.375rem;
        font-size: 0.75rem;
    }
    
    .pagination-ellipsis {
        padding: 0 0.25rem;
        font-size: 0.75rem;
    }
}

/* Animações suaves para melhor UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagination-container, .table-header-info {
    animation: fadeInUp 0.4s ease-out;
}

/* Estados de hover para melhor interação */
.table-container:hover .pagination-container {
    box-shadow: 0 -4px 8px rgba(0,0,0,0.08);
}

.table-container:hover .table-header-info {
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* Responsividade melhorada para filtros modernos */
@media (max-width: 768px) {
    .leads-section {
        padding: 15px;
    }
    
    .lead-avatar-executive {
        display: none;
    }
    
    .filters {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .filter-group {
        min-width: 100%;
        flex: none;
    }
    
    .filter-group input,
    .filter-group select {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    #search-leads {
        min-width: auto;
        width: 100%;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    #leads-table {
        min-width: 700px;
    }
    
    #leads-table thead th,
    #leads-table tbody td {
        padding: 12px 8px;
    }
    
    .btn-sm {
        margin-bottom: 4px;
    }
    
    .table-header-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-numbers {
        order: -1;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .leads-section .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .leads-section h2 {
        font-size: 24px;
        text-align: center;
    }
    
    #leads-table {
        min-width: 600px;
        font-size: 12px;
    }
    
    #leads-table thead th,
    #leads-table tbody td {
        padding: 10px 6px;
    }
    
    .status-badge,
    .potencial-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* Garantir largura mínima do campo de busca */
#search-leads {
    min-width: 300px;
}

/* Melhorias nos campos de filtro para mobile */
@media (max-width: 768px) {
    #search-leads {
        min-width: auto;
        width: 100%;
    }
}

/* =============================================================================
   MODAL DE DETALHES DO LEAD - VISUAL EXECUTIVO
   ============================================================================= */

.lead-info-executive {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Card Principal Executivo */
.lead-main-card-executive {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #212529;
}

.lead-avatar-executive {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.lead-main-info-executive {
    flex: 1;
}

.lead-company-name-executive {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #212529;
}

.lead-main-badges-executive {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lead-main-badges-executive .status-badge,
.lead-main-badges-executive .potencial-badge {
    background: #e9ecef;
    color: #495057;
    border: 1px solid #dee2e6;
    font-weight: 500;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Grid de Informações Executivo */
.lead-info-grid-executive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.info-card-executive {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.info-card-header-executive {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 500;
    color: #495057;
    font-size: 14px;
}

.info-card-header-executive i {
    font-size: 14px;
    color: #6c757d;
}

.info-card-content-executive {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item-executive {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-value-executive {
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    word-break: break-word;
}

.info-label-executive {
    font-size: 11px;
    font-weight: 400;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================================================
   SEÇÃO DE AÇÕES DO MODAL - DESIGN MELHORADO
   ============================================================================= */

.lead-actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 15px 15px;

}

.lead-actions-x {
    display: flex;
    flex-direction: column;
    padding: 0px 15px;
    margin-bottom: 25px;

}

.lead-actions-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 12px 0;
    padding: 0 0 6px 0;
    border-bottom: 2px solid #e9ecef;
}

/* Cards de Ação */
.lead-action-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    margin-bottom: 15px;
}

.lead-action-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #dee2e6;
}

.action-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 500;
    color: #495057;
    font-size: 14px;
}

.action-card-header i {
    font-size: 14px;
    color: #6c757d;
}

.action-card-content {
    padding: 16px;
}

/* Select de Status */
.status-select-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.status-select-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.status-select-input:hover {
    border-color: #007bff;
}

/* Botão de Ação Principal */
.btn-action-primary {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.btn-action-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.btn-action-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.btn-action-primary i {
    font-size: 14px;
}

/* Conteúdo de Observações */
.observations-content {
    min-height: 60px;
    padding: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.observations-content:empty::before {
    content: "Nenhuma observação registrada";
    color: #6c757d;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
    .lead-actions {
        min-width: auto;
        gap: 16px;
    }
    
    .lead-info,
    .lead-actions-x {
        min-width: 100%;
    }
    
    .action-card-content {
        padding: 12px;
    }
    
    .btn-action-primary {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .status-select-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .lead-actions-title {
        font-size: 16px;
    }
    
    .lead-action-card {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .lead-action-card {
        margin-bottom: 10px;
    }
    
    .action-card-header {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .action-card-content {
        padding: 10px;
    }
    
    .status-select-input {
        padding: 10px;
        font-size: 14px;
    }
    
    .observations-content {
        font-size: 13px;
        padding: 10px;
        min-height: 50px;
    }
    
    .lead-actions-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

/* =============================================================================
   BOTÕES DE COPIAR
   ============================================================================= */

.copy-btn {
    opacity: 0.7;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    opacity: 1;
    color: #0056b3 !important;
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.info-item-executive:hover .copy-btn {
    opacity: 1;
}

.lead-company-name-executive:hover .copy-btn {
    opacity: 1;
}
/* =============================================================================
   BOT�ES DE COPIAR
   ============================================================================= */

.copy-btn {
    opacity: 0.7;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    opacity: 1;
    color: #0056b3 !important;
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.info-item-executive:hover .copy-btn {
    opacity: 1;
}

.lead-company-name-executive:hover .copy-btn {
    opacity: 1;
}
