
/*TABLE UI START*/
.january-transactions {
    margin-top: 2px;
    }

    /* Premium Card Style */
    .january-transactions__card {
        background: white;
        border-radius: 12px;
/*        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);*/
        overflow-x: auto;
        margin-bottom: 2px;
        border: 1px solid #e5e7eb;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .january-transactions__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
    }

    /* Elegant Header */
    .january-transactions__header {
    padding: 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    background: var(--white-color); width: 100%;
    }

    .january-transactions__title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    letter-spacing: -0.025em;
    }

    .january-transactions__invoice-btn {
        background-color: white;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.4rem;
        border: 1px solid #e5e7eb;
        color: #666bfd;
        font-weight: 500;
        font-size: 1.6rem;
        gap: .8rem;
        border-radius: 8px;
    }

    .january-transactions__invoice-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
    }

    /* Sophisticated Table */
    .january-transactions__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    }

    .january-transactions__table thead {
    background-color: #f9fafb;
    }

    .january-transactions__table th {
   padding: 15px 25px;
    text-align: left;
    font-weight: 500;
    color: #424242;
    font-size: 13px;
    text-transform: capitalize;
    /* letter-spacing: 0.05em; */
    border-bottom: 1px solid #e5e7eb;
    }

    .january-transactions__table td {
    padding: 15px 25px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 15px;
    color: #424242;
    font-weight: 400;
    transition: background-color 0.2s ease;
    }

    .january-transactions__table tr:last-child td {
    border-bottom: none;
    }

    .january-transactions__table tr:hover td {
    background-color: #f9fafb;
    }

    /* Amount Styling */
    .january-transactions__amount {
    font-weight: 600;
    color: #111827;
    font-feature-settings: 'tnum';
    font-variant-numeric: tabular-nums;
    }

    /* Premium Download Button */
    .january-transactions__download-btn {
    background-color: #f1fef6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .january-transactions__download-btn:hover {
    background-color: #e5e7eb;
    transform: scale(1.05);
    }

    .january-transactions__download-btn i {
    font-size: 0.9375rem;
    color: #4b5563;
    }

    /* Elegant Copy UTR */
    .january-transactions__utr-text {
    display: inline-block;
    max-width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }

    .january-transactions__copy-btn {
    background: #f1f5fe;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    }

    .january-transactions__copy-btn:hover {
    background: #e5e7eb;
    }

    .january-transactions__copy-btn i {
    font-size: 0.875rem;
    color: #4b5563;
    transition: color 0.2s ease;
    }

    .january-transactions__copy-btn:hover i {
    color: #3b82f6;
    }

    .january-transactions__copy-success {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    color: #10b981;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    /* Premium Pagination */
    .january-transactions__pagination {
    display: flex;
    justify-content: flex-end;
    gap: 0.875rem;
    margin-top: 1.5rem;
    }

    .january-transactions__pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    background-color: var(--white-color);
    color: var(--black-color); border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 14px;
    margin-top: 0.5rem;
    width: fit-content;
    align-self: flex-end;
    }

    .january-transactions__pagination-btn:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
    transform: translateY(-1px);
    }

    .january-transactions__pagination-btn--primary {
        display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    background-color: #1EAAE7;

    color: white; border: 1px solid #1EAAE7;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 14px;
    margin-top: 0.5rem;
    width: fit-content;
    align-self: flex-end;
    }

    .january-transactions__pagination-btn--primary:hover {
    color: var(--main-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
    }
/*TABLE UI END*/
/*End main section here*/













