.t-pagination-btn {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.t-pagination-btn:hover:not(.t-pagination-btn--disabled):not(.t-pagination-btn--current) {
    background: #e0e0e0;
    border-color: #ccc;
}

.t-pagination-btn--current {
    background: #1156a9;
    border-color: #1156a9;
    color: white;
    cursor: default;
}

.t-pagination-btn--disabled {
    background: #f9f9f9;
    border-color: #e9e9e9;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.t-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 4px;
    font-size: 14px;
    color: #999;
}

/* Pagination wrapper styling */
.t-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

/* Arrow icons sizing */
.t-pagination-btn .u-icon-chevron-left,
.t-pagination-btn .u-icon-chevron-right {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .t-pagination-btn {
        width: 36px;
        height: 36px;
        margin: 0 2px;
        font-size: 13px;
    }
    
    .t-pagination-ellipsis {
        width: 36px;
        height: 36px;
        margin: 0 2px;
    }
}

.t-border-remove-right{
    border-right: none !important;
}

.t-border-remove-left{
    border-left: none !important;
}