/* Transfer Point CSS */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.profile {
    width: 100%;
    /* max-width: 900px; */
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.profile h3 {
    text-align: center;
    color: #ee6059;
    margin-bottom: 20px;
}

.transfer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-section,
.right-section {
    width: 48%;
    padding: 20px;
    border-radius: 8px;
}

.pointsblock {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #28a745;
    padding: 20px;
    border: 2px solid #28a745;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.input-group .input-group-addon {
    background: #ee6059;
    color: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ccc;
}

.form-control {
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    outline: none;
    flex: 1;
}

.btn-transfer {
    width: 100%;
    padding: 12px;
    background: #ee6059;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-transfer:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .transfer-container {
        flex-direction: column;
        gap: 20px;
    }

    .left-section,
    .right-section {
        width: 100%;
    }
}


/* Ending Transfer Point CSS */

/* Transaction History Shortcodes */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.history-section {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.history-section h3 {
    text-align: center;
    color: #ee6059;
    margin-bottom: 20px;
}

/* Table Styles */
.transaction-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.transaction-table th,
.transaction-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.transaction-table th {
    background: #ee6059;
    color: #fff;
}

.transaction-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Responsive Table */
@media (max-width: 768px) {
    .transaction-table thead {
        display: none;
    }

    .transaction-table,
    .transaction-table tbody,
    .transaction-table tr,
    .transaction-table td {
        display: block;
        width: 100%;
    }

    .transaction-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        padding: 10px;
        background: #fff;
        border-radius: 8px;
    }

    .transaction-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .transaction-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
    }
}

/* Ending Transaction History Shortcodes */


/* Leader Board */


body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    padding: 20px;
}

.leaderboard-section {
   
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.filters select,
.filters input {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.transaction-table th {
    background: #ee6059;
    color: #fff;
    padding: 12px;
    text-align: left;
}

form.transferPointForm {
    position: relative;
}

.spinner-container {
    text-align: center;
    /* padding: 20px; */
    display: none;
    position: absolute;
    top: 86%;
    left: 74%;
}


/* Ending Leader Board */


/* Cashback Redemption */


.profile {
    padding: 20px;
    border-radius: 8px;
}

.container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.childtitle {
    margin-bottom: 20px;
}

.cashback-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pointsblock {
    background: #ee6059;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
}

.primarybutton {
    background-color: #ee6059;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.primarybutton:hover {
    background-color: #0056b3;
}

.btn-style-2 {
    background-color: #28a745;
    color: white;
    font-size: 18px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cashback-options {
        flex-direction: column;
        text-align: center;
    }
}

/* Ending Cashback Redemption */

/* My EGIFT OFFERS */

.profile.offers {
    padding: 50px 0;
}

.profile.offers h3 {
    color: #ee6059;
    margin-bottom: 30px;
    font-weight: bold;
}

.offer-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.offer-card .meta-categories {
    font-weight: bold;
    font-size: 18px;
    color: #ee6059;
    margin-top: 10px;
}

.offer-card .offer-title {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.offer-card .offer-desc {
    font-size: 14px;
    color: #777;
}

.offer-card .redeem-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 15px;
    background: #ee6059;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.offer-card .redeem-btn:hover {
    background: #0056b3;
}

/* Ending My OFFERS */


/* MY OFFERS */

.profile.offers {
    padding: 50px 0;
}

.profile.offers h3 {
    color: #ee6059;
    margin-bottom: 30px;
    font-weight: bold;
}

.offer-card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.offer-card .meta-categories {
    font-weight: bold;
    font-size: 18px;
    color: #ee6059;
    margin-top: 10px;
}

.offer-card .offer-title {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.offer-card .offer-desc {
    font-size: 14px;
    color: #777;
}

.offer-card .redeem-btn {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 15px;
    background: #ee6059;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.offer-card .redeem-btn:hover {
    background: #0056b3;
}

.spinner {
    display: none;
    margin-left: 5px;
}


/* Ending MY OFFERS */