
    .modernpress-table-layout-1 {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .table-search {
        padding: 20px 24px;
        border-bottom: 1px solid #EAEAEA;
        position: relative;
    }

    .table-search input {
        width: 100%;
        max-width: 300px;
        padding: 8px 16px;
        padding-left: 40px;
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        font-size: 14px;
        color: #4B5563;
    }

    .table-search input:focus {
        outline: none;
        border-color: #2563EB;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .table-search .search-icon {
        position: absolute;
        left: 32px;
        top: 50%;
        transform: translateY(-50%);
        color: #9CA3AF;
    }

    .table-wrapper {
        overflow-x: auto;
    }

    .modernpress-table {
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        font-family: inherit;
    }

    .modernpress-table thead tr {
        background-color: #DFE5F1;
    }

    .modernpress-table th {
        padding: 16px 24px;
        text-align: left;
        font-weight: 600;
        font-size: 14px;
        color: #1A1A1A;
        white-space: nowrap;
    }

    .modernpress-table tbody tr:nth-child(odd) {
        background-color: white;
    }

    .modernpress-table tbody tr:nth-child(even) {
        background-color: #F8F8F8;
    }

    .modernpress-table td {
        padding: 16px 24px;
        font-size: 14px;
        color: #4A4A4A;
        border-bottom: 1px solid #EAEAEA;
    }

    .table-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-top: 1px solid #EAEAEA;
    }

    .table-info {
        color: #6B7280;
        font-size: 14px;
    }

    .table-pagination {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .pagination-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        background: white;
        color: #4B5563;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pagination-arrow:hover:not(:disabled) {
        background: #F3F4F6;
        color: #1F2937;
    }

    .pagination-arrow:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .pagination-arrow svg {
        width: 20px;
        height: 20px;
    }

    .pagination-numbers {
        display: flex;
        gap: 8px;
    }

    .page-number {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        background: white;
        color: #4B5563;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .page-number:hover:not(.dots) {
        background: #F3F4F6;
        color: #1F2937;
    }

    .page-number.active {
        background: #2563EB;
        color: white;
        border-color: #2563EB;
    }

    .page-number.dots {
        border: none;
        cursor: default;
        padding: 0 8px;
    }

    .page-number.dots:hover {
        background: transparent;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .table-footer {
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        .table-pagination {
            width: 100%;
            justify-content: center;
        }

        .modernpress-table th,
        .modernpress-table td {
            padding: 12px 16px;
        }
    }

    /* table widget layout 2 css */

    
.modernpress-table-layout-2 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #EAEAEA;
}

.entries-selector select {
    padding: 8px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    color: #4B5563;
    background-color: white;
    cursor: pointer;
}

.table-search {
    position: relative;
    width: 250px;
}

.table-search input {
    width: 100%;
    padding: 8px 16px;
    padding-left: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    color: #4B5563;
    transition: all 0.3s ease;
}

.table-search .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
}

.table-wrapper {
    overflow-x: auto;
}

.modernpress-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-family: inherit;
}

.modernpress-table th {
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #1A1A1A;
    white-space: nowrap;
}

.modernpress-table td {
    padding: 16px 24px;
    font-size: 14px;
    color: #4A4A4A;
    border-bottom: 1px solid #EAEAEA;
}

.modernpress-table td:nth-child(even) {
    background-color: #F8F8F8;
}

.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-top: 1px solid #EAEAEA;
}

.table-info {
    color: #6B7280;
    font-size: 14px;
}

.table-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: white;
    color: #4B5563;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-arrow:hover:not(:disabled) {
    background: #F3F4F6;
    color: #1F2937;
}

.pagination-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-arrow svg {
    width: 20px;
    height: 20px;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: white;
    color: #4B5563;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover:not(.dots) {
    background: #F3F4F6;
    color: #1F2937;
}

.page-number.active {
    background: #2563EB;
    color: white;
    border-color: #2563EB;
}

.page-number.dots {
    border: none;
    cursor: default;
    padding: 0 8px;
}

.page-number.dots:hover {
    background: transparent;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .table-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .table-search {
        width: 100%;
    }

    .table-footer {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .table-pagination {
        width: 100%;
        justify-content: center;
    }

    .modernpress-table th,
    .modernpress-table td {
        padding: 12px 16px;
    }
}
    