

body {
    background-color: black !important;
    margin: 0;
}

.site-content {
    background-color: #e9ecef;
    max-width: 750px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Thank You Marquee */
.thank-you-marquee {
    background: black;
    color: white;
    padding: 5px 0;
}

.thank-you-inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.thank-you-inner marquee {
    white-space: nowrap;
}

.thank-you-inner b {
    text-transform: uppercase;
}

/* Sticky Footer */
.sticky-footer {
    background: linear-gradient(to top, black, blue);
    padding: 8px 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}

.sticky-footer-inner {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
}

.whatsapp-button {
    background-color: green;
    border: none;
    padding: 5px 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pin-form {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-grow: 1;
}

.pin-input {
    height: 32px;
    font-size: 14px;
    width: 100%;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ced4da;
}

.view-answer-button {
    background-color: #007bff;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .pin-input {
        width: 95% !important;
    }
}