/* Skills-Based Question Styling */
.skills-based-question {
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 20px;
    background-color: #f9f9f9;
}

.skills-question {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.skills-answer-option {
    margin-bottom: 5px;
}

.skills-answer-option input[type="radio"] {
    margin-right: 10px;
}

.submit-answer-button {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #0071a1;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.submit-answer-button:hover {
    background-color: #005177;
}

.skills-answer-feedback {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.skills-answer-feedback.success {
    color: green;
}

.skills-answer-feedback.error {
    color: red;
}

/* Existing Styles */
.stock-info {
    margin: 10px 0;
}

.stock-percentage {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.stock-progress-bar {
    width: 80%; /* Responsive width */
    max-width: 500px; /* Maximum width */
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
    margin: 10px auto; /* Centers the progress bar */
}

.stock-progress {
    height: 100%;
    background-color: #222d44;
    width: 0%;
    transition: width 0.5s ease-in-out;
}

/* Enter Now Button */
.enter-now-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #222d44;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.enter-now-button:hover {
    background-color: #344569;
    color: #fff;
}

/* Price Styles */
.price-worth {
    display: block;
/*    font-size: 1.2em;
    font-weight: bold; */
    margin-bottom: 5px;
}

.price-per-entry {
    display: block;
    font-size: 1.5em;
    color: #222d44;
}

.price-description {
    font-size: 0.9em;
    color: #555555;
    margin-left: 5px;
    vertical-align: middle;
}

/* Tickets Info */
.tickets-info {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers child elements */
}

.size-large {
    margin-bottom:0px !important;
}

.on-sale {
    margin-bottom:1em !important;
}

.recent-product-stock {
    margin-bottom:1em !important;
}

.countdown-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Add space between items */
    margin-top: 0px !important;
    margin-bottom: 1em !important;
}

/* Optional: Style individual countdown items */
.countdown-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px; /* Space between number and label */
}

.mobile-margin-remove {
    padding-right: 4.1em !important;
    padding-left: 4.1em !important;
    padding-top: 2em !important;
    padding-bottom: 2em !important;
}

/* Responsive Design */
@media (max-width: 600px) {
    .mobile-margin-remove {
        padding-right: 0 !important;
        padding-left: 0 !important;
        padding-top: 2em !important;
        padding-bottom: 2em !important;
    }
} 