.type-tour_request {
    padding: 0px !important;
}

.type-tour_request .entry-header {
    display: none !important;
}

.tour-request-main-container {
    background-color: #f2f2f2 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
}

.card-tour-request {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    min-width: 60vw;
    text-align: center;
}

.card-tour-request .icon-card {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.tft-account li {
    display: inline-block;
    margin-right: 15px;
}

.tft-account ul li a {
    padding: 12px 32px;
    color: var(--tf-text-paragraph);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: .3s all ease;
    border: 1px solid rgba(0, 0, 0, 0);
}


.tft-account ul li a.register:hover {
    color: #fff;
}

.tft-account ul li a.login:hover {
    color: #fff;
}


/* Insufficient Funds template */
.ctr-funds {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
}

.ctr-funds p {
    margin: 0px;
}

.ctr-funds .ctr-label {
    font-size: 16px;
}

.ctr-funds .ctr-amount {
    font-size: 35px;
    background-color: #b58e53;
    color: white;
    border-radius: 5px;
    width: fit-content;
    margin: 10px auto 0px auto;
    padding: 0px 25px;
}


.ctr-bundles {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 40px 0;
}

.ctr-bundle {
    background: #1a1a1a;
    /* dark background to match header/footer */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    width: 240px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: #fff;
    /* text in white */
}

.ctr-bundle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.ctr-bundle h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.ctr-bundle p {
    margin: 6px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.ctr-purchase-button {
    background-color: #b68642;
    /* gold accent */
    color: #fff;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 15px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ctr-purchase-button:hover {
    background-color: #8a642f;
    /* darker gold on hover */
    transform: scale(1.05);
}



div.mycred-sell-this-wrapper {
    background: #f2f2f2;
    padding: 30px 0px 100px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}


button.mycred-buy-this-content-button.btn.btn-primary.btn-lg {
    font-size: 30px;
    text-transform: uppercase;
    border-radius: 300px;
    background: #b68642;
    color: white;
    border: 1px solid white;
}

button.mycred-buy-this-content-button.btn.btn-primary.btn-lg:hover {
    background: #8a642f;
    color: white;
    border: 1px solid white;
}

.form-tour-request .elementor-field-subgroup {
    display: grid !important;
    grid-template-columns: 50% 50% !important;
    width: 100% !important;
}

.form-tour-request .elementor-field-option {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.form-tour-request .elementor-field-option input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
}

.form-tour-request .elementor-field-option label {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
}




/* Tour Request Display */
.tour-request-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    font-family: Arial, sans-serif;
    margin: 50px 0;
}

.tour-card {
    width: 95vw;
    max-width: 80vw;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tour-card-header {
    background: #e1a95b;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-card-header i {
    font-size: 20px;
}

.tour-card-body {
    padding: 20px;
}

.tour-card-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-card-body ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.tour-card-body ul li strong {
    color: #333;
}

.tour-request-container .section-icon:before {
    color: #fff !important;
}