/**
 * IPDSA Licitações - Estilos
 * Cores: Azul #005d86 | Laranja #f89b1e
 * Fonte: Inter
 */

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */

.ipdsa-licitacoes-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   FILTROS DE PESQUISA
   ============================================ */

.ipdsa-licitacoes-filters {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.ipdsa-filters-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.ipdsa-filters-row:first-child {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Filtro por Status (Botões) */
.ipdsa-filter-status-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.ipdsa-filter-status-btn {
    padding: 10px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ipdsa-filter-status-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 93, 134, 0.05) 0%, rgba(0, 132, 184, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ipdsa-filter-status-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ipdsa-filter-status-btn:hover::before {
    opacity: 1;
}

.ipdsa-filter-status-btn.active {
    background: linear-gradient(135deg, #005d86 0%, #0084b8 100%);
    border-color: #005d86;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 93, 134, 0.25);
}

.ipdsa-filter-status-btn.active::before {
    opacity: 0;
}

.ipdsa-filter-status-btn span {
    position: relative;
    z-index: 1;
}

/* Campo de Pesquisa */
.ipdsa-filter-search {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.ipdsa-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    z-index: 2;
}

.ipdsa-search-input {
    width: 100%;
    padding: 14px 48px 14px 48px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.ipdsa-search-input:focus {
    outline: none;
    border-color: #005d86;
    box-shadow: 0 0 0 3px rgba(0, 93, 134, 0.1);
    background: #ffffff;
}

.ipdsa-search-input::placeholder {
    color: #94a3b8;
}

.ipdsa-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f5f9;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
    z-index: 2;
}

.ipdsa-search-clear:hover {
    background: #e2e8f0;
    color: #475569;
}

/* Filtro por Modalidade */
.ipdsa-filter-modalidade {
    min-width: 220px;
}

.ipdsa-filter-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.ipdsa-filter-select:focus {
    outline: none;
    border-color: #005d86;
    box-shadow: 0 0 0 3px rgba(0, 93, 134, 0.1);
}

.ipdsa-filter-select:hover {
    border-color: #cbd5e1;
}

/* Resultados */
.ipdsa-licitacoes-results {
    position: relative;
}

.ipdsa-licitacoes-list {
    transition: opacity 0.3s ease;
}

.ipdsa-licitacoes-list.filtering {
    opacity: 0.6;
}

/* Mensagem quando não há resultados */
.ipdsa-licitacoes-empty-filtered {
    text-align: center;
    padding: 80px 20px;
}

.ipdsa-empty-content svg {
    color: #cbd5e1;
    margin-bottom: 24px;
}

.ipdsa-empty-content h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.ipdsa-empty-content p {
    margin: 0 0 24px 0;
    color: #64748b;
    font-size: 15px;
}

.ipdsa-btn-clear-filters {
    padding: 12px 24px;
    background: linear-gradient(135deg, #005d86 0%, #0084b8 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 93, 134, 0.2);
}

.ipdsa-btn-clear-filters:hover {
    background: linear-gradient(135deg, #004a6b 0%, #006a96 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 93, 134, 0.3);
}

/* ============================================
   LAYOUT LISTA
   ============================================ */

.ipdsa-licitacoes-lista .ipdsa-licitacao-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.ipdsa-licitacoes-lista .ipdsa-licitacao-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #005d86;
}

/* ============================================
   LAYOUT GRID
   ============================================ */

.ipdsa-licitacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.ipdsa-licitacoes-grid .ipdsa-licitacao-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.ipdsa-licitacoes-grid .ipdsa-licitacao-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #005d86;
}

/* ============================================
   HEADER DA LICITAÇÃO
   ============================================ */

.ipdsa-licitacao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.ipdsa-licitacao-numero {
    font-size: 14px;
    color: #6b7280;
}

.ipdsa-licitacao-numero .ipdsa-licitacao-label {
    margin-right: 8px;
}

.ipdsa-licitacao-numero strong {
    color: #005d86;
    font-weight: 600;
    font-size: 16px;
}

.ipdsa-licitacao-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ipdsa-licitacao-status.status-aberta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.ipdsa-licitacao-status.status-encerrada {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(107, 114, 128, 0.2);
}

.ipdsa-licitacao-status.status-outra {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2);
}

/* ============================================
   TÍTULO
   ============================================ */

.ipdsa-licitacao-titulo {
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.ipdsa-licitacao-titulo a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ipdsa-licitacao-titulo a:hover {
    color: #005d86;
}

/* ============================================
   METADADOS
   ============================================ */

.ipdsa-licitacao-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.ipdsa-licitacao-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 150px;
}

.ipdsa-meta-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ipdsa-meta-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 600;
}

.ipdsa-dias-restantes .ipdsa-meta-value {
    color: #005d86;
}

.ipdsa-dias-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #e3f2fd;
    border-left: 3px solid #2196f3;
    border-radius: 4px;
    font-weight: 600;
    color: #1976d2;
}

/* ============================================
   OBJETO
   ============================================ */

.ipdsa-licitacao-objeto {
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.6;
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */

.ipdsa-licitacao-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.ipdsa-licitacao-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #005d86;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.ipdsa-licitacao-link:hover {
    color: #f89b1e;
    gap: 12px;
}

/* ============================================
   ESTADO VAZIO
   ============================================ */

.ipdsa-licitacoes-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.ipdsa-licitacoes-empty p {
    font-size: 16px;
    margin: 0;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* ============================================
   MODAL POPUP
   ============================================ */

.ipdsa-licitacao-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ipdsa-licitacao-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.ipdsa-licitacao-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.ipdsa-licitacao-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ipdsa-licitacao-modal-close:hover {
    background: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ipdsa-licitacao-modal-close svg {
    width: 20px;
    height: 20px;
    color: #1f2937;
}

.ipdsa-licitacao-modal-header {
    padding: 32px 70px 24px 40px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    position: relative;
}

.ipdsa-licitacao-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    flex: 1;
    line-height: 1.3;
}

.ipdsa-licitacao-status-badge {
    flex-shrink: 0;
    margin-right: 0;
    z-index: 1;
}

.ipdsa-licitacao-modal-body {
    padding: 32px 40px;
    overflow-y: auto;
    flex: 1;
}

.ipdsa-modal-loading {
    text-align: center;
    padding: 60px 20px;
}

.ipdsa-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #005d86;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ipdsa-modal-loading p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Informações do Modal */
.ipdsa-licitacao-modal-info {
    margin-bottom: 32px;
}

.ipdsa-modal-info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.ipdsa-modal-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ipdsa-modal-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ipdsa-modal-value {
    font-size: 15px;
    color: #1f2937;
    font-weight: 600;
}

.ipdsa-modal-objeto {
    margin-bottom: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 93, 134, 0.08);
    position: relative;
    overflow: hidden;
}

.ipdsa-modal-objeto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #005d86 0%, #0084b8 100%);
}

.ipdsa-modal-objeto h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.ipdsa-modal-objeto p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
    font-size: 15px;
    white-space: pre-wrap;
}

/* Arquivos */
.ipdsa-modal-arquivos {
    margin-top: 40px;
}

.ipdsa-modal-arquivos h3 {
    margin: 0 0 24px 0;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.ipdsa-arquivos-grid {
    display: grid;
    gap: 12px;
}

.ipdsa-arquivo-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 0 rgba(0, 93, 134, 0);
}

.ipdsa-arquivo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 93, 134, 0.02) 0%, rgba(0, 132, 184, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ipdsa-arquivo-item:hover {
    border-color: rgba(0, 93, 134, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 32px rgba(0, 93, 134, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 93, 134, 0.05);
}

.ipdsa-arquivo-item:hover::before {
    opacity: 1;
}

.ipdsa-arquivo-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 32px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 93, 134, 0.08) 0%, rgba(0, 132, 184, 0.08) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.ipdsa-arquivo-item:hover .ipdsa-arquivo-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(0, 93, 134, 0.2);
    border-color: rgba(0, 93, 134, 0.15);
}

.ipdsa-arquivo-emoji {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.ipdsa-arquivo-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.ipdsa-arquivo-nome {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    word-break: break-word;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.ipdsa-arquivo-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

.ipdsa-arquivo-tipo {
    font-weight: 600;
    color: #475569;
    padding: 4px 10px;
    background: rgba(0, 93, 134, 0.06);
    border-radius: 6px;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ipdsa-arquivo-tamanho {
    color: #94a3b8;
    font-size: 12px;
}

.ipdsa-arquivo-download {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005d86;
    background: rgba(0, 93, 134, 0.06);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.ipdsa-arquivo-item:hover .ipdsa-arquivo-download {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #005d86 0%, #0084b8 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 93, 134, 0.25);
}

.ipdsa-arquivo-item:hover .ipdsa-arquivo-download svg {
    stroke: #ffffff;
}

.ipdsa-arquivo-login-required {
    padding: 40px 32px;
    text-align: center;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.ipdsa-arquivo-login-required::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
}

.ipdsa-arquivo-login-required p {
    margin: 0 0 24px 0;
    color: #92400e;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.ipdsa-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #005d86 0%, #0084b8 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 93, 134, 0.2);
    letter-spacing: 0.01em;
}

.ipdsa-btn-login:hover {
    background: linear-gradient(135deg, #004a6b 0%, #006a96 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 93, 134, 0.3);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
    .ipdsa-licitacoes-container {
        padding: 0 16px;
    }
    
    .ipdsa-licitacoes-grid {
        grid-template-columns: 1fr;
    }
    
    .ipdsa-licitacao-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .ipdsa-licitacao-meta {
        flex-direction: column;
    }
    
    .ipdsa-licitacao-meta-item {
        min-width: 100%;
    }

    /* Filtros Responsivos */
    .ipdsa-licitacoes-filters {
        padding: 20px;
    }

    .ipdsa-filters-row {
        flex-direction: column;
        gap: 16px;
    }

    .ipdsa-filters-row:first-child {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .ipdsa-filter-status-group {
        width: 100%;
        justify-content: flex-start;
    }

    .ipdsa-filter-status-btn {
        flex: 1;
        min-width: calc(50% - 4px);
        font-size: 13px;
        padding: 10px 16px;
    }

    .ipdsa-filter-search {
        width: 100%;
        min-width: 100%;
    }

    .ipdsa-filter-modalidade {
        width: 100%;
        min-width: 100%;
    }

    /* Modal Responsivo */
    .ipdsa-licitacao-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }

    .ipdsa-licitacao-modal-header {
        padding: 24px 60px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ipdsa-licitacao-modal-header h2 {
        font-size: 20px;
        padding-right: 0;
    }

    .ipdsa-licitacao-modal-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
    }

    .ipdsa-licitacao-modal-body {
        padding: 24px 20px;
    }

    .ipdsa-modal-info-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ipdsa-modal-objeto {
        padding: 20px;
    }

    .ipdsa-arquivo-item {
        flex-wrap: wrap;
        padding: 16px;
    }

    .ipdsa-arquivo-icon {
        width: 48px;
        height: 48px;
    }

    .ipdsa-arquivo-emoji {
        font-size: 24px;
    }
}

