.golite-referral-dashboard {
    font-family: sans-serif;
    margin: auto;
}

/* ========== Rewards Section ========== */

.gl-rewards-box {
    background: #6b3fac;
    border-radius: 30px;
    max-width: 1280px;
    margin: 20px auto 0px auto;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

.gl-rewards-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.gl-rewards-image img {
    max-width: 320px;
    height: auto;
    border-radius: 30px 0 0 30px;
}

.gl-rewards-content {
    flex: 1;
    min-width: 320px;
    padding: 40px;
}

.gl-rewards-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.gl-rewards-input-wrap {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    max-width: 550px;
    margin-top: 20px;
    border: 1px solid #FD4C0E;
}

.gl-rewards-input-wrap input {
    flex: 1;
    padding: 15px 15px;
    font-size: 16px;
    border: none;
    outline: none;
    color: #a1a1a1;
}

.gl-rewards-copy-btn {
    background-color: #ff4d00;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.gl-rewards-copy-btn:hover {
    background-color: #e53d00;
}

.gl-rewards-socials {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.gl-rewards-socials a img {
    width: 100px;
    height: 100px;
}

.gl-copy-status {
    margin-left: 10px;
    font-size: 14px;
    color: #fff;
    background-color: #28a745;
    padding: 2px 8px;
    border-radius: 12px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

/* ========== Stepper Section ========== */

.gl-rewards-stepper {
    text-align: center;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    max-width: 1200px;
    margin: auto;
}

.gl-rewards-stepper h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 30px;
}

.gl-rewards-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.gl-rewards-step {
    background-color: #0033a0;
    color: #fff;
    border-radius: 20px;
    width: 220px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.gl-rewards-step .step-icon img {
    background: white;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
}

.gl-rewards-step .step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gl-rewards-step .step-desc {
    font-size: 14px;
    line-height: 1.4;
}

.step-arrow {
    font-size: 26px;
    color: #aaa;
}

@media (max-width: 768px) {
    .gl-rewards-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* ========== Redeem Section ========== */

.gl-redeem-section,
.gl-redeem-section h2,

.gl-redeem-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.gl-redeem-card {
    width: 180px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
    border: 1px solid #0033a0;
    transition: transform 0.3s;
}

.gl-redeem-card:hover {
    transform: translateY(-5px);
}

.gl-redeem-top {
    background: #fff;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gl-redeem-top img {
    width: 60px;
    height: 60px;
}

.gl-redeem-bottom {
    background: #0033a0;
    color: white;
    padding: 20px 10px;
    border-top: 1px solid #eee;
}

.gl-redeem-bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
}

.gl-redeem-bottom strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .gl-redeem-card {
        width: 140px;
    }

    .gl-redeem-top img {
        width: 50px;
        height: 50px;
    }
}

/* ========== Points / Progress Section ========== */

.gl-points-section {
    background: #013bbf;
    border-radius: 20px;
    padding: 30px 20px;
    color: white;
    margin: 40px auto;
    font-family: 'Segoe UI', sans-serif;
}

.gl-points-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    margin: -15px;
}

.gl-points-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.gl-points-header span {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.gl-points-header img {
    width: 70px;
}

.gl-history-link {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 14px;
    text-decoration: underline;
    color: #fff;
}

.gl-progress-card {
    background: #fff;
    border-radius: 16px;
    margin: 30px 20px 10px 20px;
    padding: 30px 20px;
}

.gl-milestones-top,
.gl-milestones-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.gl-milestones-top div,
.gl-milestones-bottom div {
    text-align: center;
    margin: 10px;
}

.gl-milestones-top img,
.gl-milestones-bottom img {
    width: 45px;
    height: 45px;
}

.gl-milestones-top p {
    margin-top: 8px;
    font-weight: bold;
    color: #6a1b9a;
}

.gl-milestones-bottom p {
    margin-top: 8px;
    font-weight: 700;
    color: #000;
}

.gl-progress-bar-wrap {
    margin: 25px 0;
    height: 20px;
    border-radius: 10px;
    background: #e0e0e0;
    overflow: hidden;
    position: relative;
}

.gl-progress-fill {
    height: 100%;
    background-color: #28a745;
    transition: width 0.4s ease;
    border-radius: 10px 0 0 10px;
}

/* ========== Invitees Section ========== */

.invitees-wrapper {
    background: #fff;
    border-radius: 12px;
    padding-top: 20px;
    margin: 30px auto;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    border: 3.5px solid #0033cc;
}

.invitee-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.invitee-table th,
.invitee-table td {
    padding: 14px;
    font-size: 15px;
}

.invitee-table thead {
    background: #f0f0f0;
    font-weight: 600;
}

.invitee-table tr.completed-row {
    background-color: #eaffdd;
}

.step {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: #d2d2d2;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    margin-right: 4px;
}

.step.done {
    background: #3abe53;
}

.badge {
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 13px;
    margin-left: 6px;
    font-weight: bold;
}

.badge.green {
    background: #36b037;
    color: #fff;
}

.badge.blue {
    background: #0a51c1;
    color: #fff;
}

.btn {
    padding: 8px 16px;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.btn.green {
    background: #36b037;
    color: white;
}

.btn.blue {
    background: #0a51c1;
    color: white;
}

.no-invitee-box {
    text-align: center;
}

.no-invitee-box img {
    max-width: 300px;
    margin-bottom: 20px;
}

.no-invitee-box p {
    font-size: 16px;
    color: #333;
}

/* ========== Tier Benefits ========== */

.gl-tier-benefits-wrapper-main {
    font-family: 'Segoe UI', sans-serif;
	padding: 15px  0px;
    text-align: center;
}

.gl-tier-benefits-wrapper-main h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}
.gl-tier-benefits-wrapper {
    font-family: 'Segoe UI', sans-serif;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
}
.gl-tier-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.gl-tier-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 200px;
}

.gl-tier-left img.tier-icon {
    width: 70px;
    height: 70px;
}

.tier-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.tier-points {
    font-size: 14px;
    color: #777;
    margin: 2px 0 0;
}

.gl-tier-features {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 30px;
}

.gl-tier-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 140px;
}

.gl-tier-feature img {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
}

.gl-tier-feature p {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .gl-tier-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .gl-tier-features {
        justify-content: flex-start;
    }
}

/* ========== States (Signed Up / Buy Plan / Device Protection) ========== */

.signed-up-blue input[type="checkbox"],
.buy-plan-blue input[type="checkbox"],
.active-device-blue input[type="checkbox"],
.signed-up-green input[type="checkbox"],
.buy-plan-green input[type="checkbox"],
.active-device-green input[type="checkbox"] {
    accent-color: #0038B1;
    transform: scale(1.3);
}

.signed-up-blue,
.buy-plan-blue,
.active-device-blue,
.signed-up-green,
.buy-plan-green,
.active-device-green {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: left;
}

.send-reminder-row .buy-plan-txt,
.send-reminder-row .signed-txt {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
    color: #424242;
}

.send-reminder-row .badge-blue {
    background: #0038B1;
    color: #fff;
    padding: 3px 12px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.send-reminder-row .badge-green {
    background: #54BA0C;
    color: #fff;
    padding: 3px 12px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

/* ========== Custom Styling ========== */

.s-number {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0038B1;
}

.s-number-green {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #54BA0C;
}

.row-grey {
    background-color: #F4F4F4;
}

.row-light-green {
    background-color: #e5f5db;
}

.send-reminder-row {
    width: 100%;
}

.invites-data table {
    border: none;
    width: 100%;
}

.invites-data table tr:not(first-child) td {
    padding-top: 3px;
    padding-bottom: 3px;
    border: none;
}

.invites-data table tr {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.invites-data table tr td {
    padding-left: 0px;
    padding-right: 0px;
}

.invites-data table tr td:nth-child(1) {
    width: 13%;
}

.invites-data table tr td:nth-child(2) {
    width: 17%;
}

.invites-data table tr td:nth-child(3) {
    width: 17%;
}

.invites-data table tr td:nth-child(4) {
    width: 28%;
}

.invites-data table tr td:nth-child(5) {
    width: 22%;
}

.invites-data table tr:not(first-child) {
    margin: 10px 0px;
}

.your-ivites-main {
    border: 1px solid #ccc !important;
    border-radius: 27px;
    border: none;
    max-width: 100%;
    margin: auto;
}

.invites-heading {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 20px;
    margin-top: 20px;
}

.send-reminder-btn {
    background-color: #0038B1;
    border-radius: 12px;
    padding: 15px 20px;
    width: 100%;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    cursor: pointer;
    border: none;
}

.send-reminder-btn:hover {
    background-color: #0038B1;
}

.completed-btn {
    background-color: #54BA0C;
    border-radius: 12px;
    padding: 15px 20px;
    width: 100%;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
	cursor: pointer;
	border: none;
}

.completed-btn:hover {
  background-color: #54BA0C;
}
