div[id^="gew-wheel-wheel"] {
    display: block;
}

.gew-thankyou-wheels {
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
}

.gew-thankyou-wheels h2, .gew-thankyou-wheels-modal-content h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.gew-wheel-tabs {
    margin-top: 15px;
}

.gew-tab-nav {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 20px;
}

.gew-tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    margin-right: 5px;
    outline: none !important;
}

.gew-tab-button:hover {
    color: #333;
    background-color: #f0f0f0;
}

.gew-tab-button.active {
    color: #007cba;
    border-bottom-color: #007cba;
    background-color: #f0f8ff;
}

.gew-tab-pane {
    padding: 15px;
    animation: fadeIn 0.5s;
}

.gew-tab-pane .wxgiveaway-lucky-wheel-container .wheel-container, .gew-tab-pane .wxgiveaway-lucky-wheel-container .wheel-form-container{
    display: none;
}

.gew-tab-pane .wxgiveaway-lucky-wheel-container{
    padding: 0;
}

.gew-tab-pane.active .wxgiveaway-lucky-wheel-container .wheel-container, .gew-tab-pane.active .wxgiveaway-lucky-wheel-container .wheel-form-container{
    display: block;
}

.gew-tab-pane.active .wxgiveaway-lucky-wheel-container{
    padding: 20px;
}

.gew-single-wheel h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Prevent body scroll when modal is open */
body.gew-modal-open {
    overflow: hidden;
}

/* Mobile responsive */
@media (max-width: 768px) {

    .gew-modal {
        width: 95%;
        max-height: 95vh;
    }

    .gew-modal-header {
        padding: 15px 20px;
    }

    .gew-modal-header h2 {
        font-size: 20px;
    }

    .gew-modal-body {
        padding: 20px;
        max-height: calc(95vh - 70px);
    }

    .gew-modal-trigger-btn {
        padding: 12px 20px;
        font-size: 16px;
        max-width: 90%;
    }

    .gew-tab-nav {
        flex-direction: column;
    }

    .gew-tab-button {
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 5px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .gew-tab-button.active {
        border-left-color: #007cba;
        border-bottom-color: transparent;
    }
}

.no-of-spin-per-quantity-container{
    margin: 0;
}


/* Modal section start*/
/* Modal Trigger Button */
.gew-modal-trigger-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gew-modal-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Modal Overlay */
.gew-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gew-modal-overlay.active {
    display: block;
    opacity: 1;
}

/* Modal Container */
.gew-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.gew-modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Modal Header */
.gew-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 1px solid #e5e5e5;
}

.gew-modal-header h2 {
    margin: 0;
    font-size: 24px;
}

.gew-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.gew-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Modal Body */
.gew-modal-body {
    padding: 30px;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
}

/* Wheel content styles inside modal */
.gew-thankyou-wheels-modal-content {
    margin: 0;
    padding: 0;
}

/* Modal section end*/