/* Payout and Marketplace Styles */
.ge-payout-card,
.ge-marketplace-wrapper {
    margin: 20px 0;
    font-family: sans-serif;
}

.ge-payout-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    max-width: 450px;
}

.ge-offers-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ge-card {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    background: #fff;
    transition: transform 0.2s;
}

.ge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#p_calc_result {
    margin-top: 5px;
    font-weight: bold;
    color: #006BFF;
}

.ge-success-msg {
    color: green;
    border: 2px dashed green;
    padding: 10px;
    margin-top: 20px;
}

.ge-error-msg {
    color: red;
    margin-top: 10px;
}

#ge_spend_points_box_wrapper {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    margin: 20px 0 !important;
    position: relative !important;
    z-index: 9999 !important;
}