.exxata-table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.exxata-search-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.exxata-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.exxata-search-input:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.exxata-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}

.exxata-table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.exxata-table-el {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: inherit;
}

.exxata-table-thead th {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.exxata-table-tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
    font-size: 15px;
}

.exxata-table-tbody tr:last-child td {
    border-bottom: none;
}

.exxata-text-center {
    text-align: center;
}

.exxata-doc-name-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exxata-doc-icon {
    font-size: 18px;
    color: #64748b;
    flex-shrink: 0;
}

.exxata-doc-title {
    font-weight: 500;
}

.exxata-doc-date {
    color: #64748b;
}

.exxata-btn-doc {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    border-radius: 4px;
    text-align: center;
    min-width: 100px;
    cursor: pointer;
}

.exxata-empty-message {
    text-align: center;
    color: #94a3b8;
    padding: 30px !important;
}

/* Responsividade Mobile */
@media screen and (max-width: 768px) {
    .exxata-search-container {
        max-width: 100%;
    }

    .exxata-table-el, 
    .exxata-table-el thead, 
    .exxata-table-el tbody, 
    .exxata-table-el th, 
    .exxata-table-el td, 
    .exxata-table-el tr {
        display: block;
    }

    .exxata-table-thead {
        display: none !important;
    }

    .exxata-table-tbody tr {
        border-bottom: 2px solid #e2e8f0;
        padding: 10px 0;
    }

    .exxata-table-tbody tr:last-child {
        border-bottom: none;
    }

    .exxata-table-tbody td {
        border: none;
        padding: 8px 20px;
        position: relative;
        padding-left: 45%;
        text-align: left !important;
    }

    .exxata-table-tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        width: 40%;
        white-space: nowrap;
        font-weight: 600;
        color: #475569;
        font-size: 13px;
        text-transform: uppercase;
    }

    .exxata-doc-name-wrapper {
        justify-content: flex-start;
    }

    .exxata-btn-doc {
        width: 100%;
        box-sizing: border-box;
    }
}
