/* SECTION */
.latest-transactions {
    margin-top: 60px;
}

.latest-transactions h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.latest-transactions .subtitle {
    color: #6b7280;
    font-size: 14px;
}

/* WRAPPER */
.transaction-wrapper {
    position: relative;
    margin-top: 24px;
}

/* SLIDER */
.transaction-slider {
    display: flex;
    gap: 20px;
    padding: 10px 56px; 
    overflow-x: auto;
    scrollbar-width: none;
}

.transaction-slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.transaction-card {
     min-width: 300px;   
    height: 92px;      
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 18px; 

    display: flex;
    align-items: center;
    gap: 14px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* AVATAR */
.transaction-card .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* INFO */
.tx-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.username {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

/* ROBUX */
.robux {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.robux img {
    width: 20px;
    height: 20px;
}

/* BUTTON */
.tx-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #111827;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.tx-btn.left {
    left: 10px;
}

.tx-btn.right {
    right: 10px;
}

.tx-btn:hover {
    background: #000000;
}


