body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

h1 {
    text-align: center;
}

label {
    display: block;
    margin-top: 10px;
}

select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#content {
    margin-top: 20px;
}

/* Rest of your CSS styles */

/* Style for the lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Style for the lightbox container */
.lightbox-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    width: 80%;
    max-width: 800px;
    position: relative;
}

/* Style for the close button */
.lightbox-close-button {
    background: none;
    border: none;
    outline: none;
    position: absolute;
    top: -35px;
    right: -35px;
    padding: 0 10px;
    font-size: 40px;
    cursor: pointer;
    color: white;
}

.lightbox-close-button:hover {
    color: rgba(0, 0, 0, 0.8);
}

/* Style for the JWPlayer container */
.lightbox-player {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    position: relative;
}

.download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-item {
    margin: 10px 0;
}

.download-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #2980b9;
}