/* Event Details Styles */
.emp-event-details {
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background-color: inherit; /* Inherit background color */
    color: inherit; /* Inherit text color */
}

.emp-event-details h2 {
    margin-top: 0;
    color: inherit; /* Inherit text color */
}

.emp-event-details p {
    margin: 5px 0;
    color: inherit; /* Inherit text color */
}

.emp-event-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.emp-buy-button {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
}

.emp-buy-button:hover {
    background-color: #005a87;
}

.emp-event-description {
    margin-top: 15px;
}

.event-countdown {
    position: fixed;
    bottom: 20px; /* Adjusts the vertical distance from the bottom of the page */
    left: 50%; /* Centers the countdown horizontally */
    transform: translateX(-50%); /* Ensures proper centering */
    background-color: rgba(0, 0, 0, 0.8); /* Dark background with transparency */
    color: white; /* White text color */
    padding: 10px 20px; /* Adds some padding for spacing */
    border-radius: 8px; /* Rounded corners */
    font-size: 18px; /* Font size for the countdown */
    font-weight: bold; /* Bold font */
    z-index: 9999; /* Ensures the countdown is on top of other elements */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); /* Adds a shadow for a floating effect */
}

.event-countdown span {
    display: inline-block;
    margin: 0 5px; /* Space between countdown elements */
}

