<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* body {
    font-family: Arial, sans-serif;
} */

.audio-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 60%;
    margin: 0 auto 20px auto;

}

.audio-btn {
    padding: 10px 20px;
    border: 2px solid black;
    background-color: white;
    cursor: pointer;
    box-shadow: 0 0 10px 5px #00679b;

}

.audio-btn.active {
    background-color: #FFF7DB; /* Highlight the pressed button */
    border-color: black; /* Highlight border */
    color: black; /* Change text color */
}

.audio-container {
    background-color: rgba(239, 220, 128, 0.10);
    padding: 30px;
    border: 2px solid black;
    width: 80%;
    margin: 0 auto;
}

.audio-info {
    text-align: left;
    margin-bottom: 10px;
}

#audio-title {
    font-size: 18px; /* Smaller text for the Audio 1 title */
}

.play-btn-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.play-btn {
    font-size: 32px;
    border: 2px solid black;
    background: none;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: white;
}

.image-selection, .drop-area {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.draggable {
    width: 120px;
    height: 120px;
    background-color: white;
    background-size: contain; /* Adjusted */
    background-position: center;
    background-repeat: no-repeat; /* Prevents tiling */
    border: 2px solid black;
    cursor: move;
}

.drop-area {
    justify-content: center;
}

.dropzone {
    width: 120px;
    height: 120px;
    margin: 0 10px;
    border: 2px solid black;
    background-color: white;
    background-size: contain; /* Adjusted */
    background-position: center;
    background-repeat: no-repeat; /* Prevents tiling */
}

.submit-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    border: 2px solid #00496c;
    background-color: #00679b;
    cursor: pointer;
    border-radius: 5px;
    font-size: large;
    color: white; 
    transition: transform ease 0.2s;
}

.submit-btn:hover {
    cursor: pointer;
    transform: scale(1.1);
    background-color: #0086ce;
    color: white;
}

.main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF7DB;
    padding: 10px;
    border-radius: 5px;
    width: 80%;
    margin: 20px auto;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border: 2px solid black;

}

.left {
    display: flex;
    align-items: center;
}

.left button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.left h2 {
    margin-left: 20px;
    font-size: large;
    color: #333;
}

.right {
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
}

.right span {
    font-size: 20px;
    color: #e74c3c;
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: bold;
}

.drop-area-container {
    background-color: #FFF7DB; /* Change this to your desired background color */
    border-radius: 8px; /* Optional: adds rounded corners */
    padding: 10px; /* Optional: adds some padding inside the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow around the container */
    margin-top: 20px; /* Optional: adds space above the container */
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.fa-play-green {
    color: green; /* Change this to your desired green color */
}

/* Style for disabled buttons */
.audio-btn:disabled {
    cursor: not-allowed; /* Cursor style when buttons are disabled */
    opacity: 0.5; /* Optional: Makes the button look disabled */
}

/* Style for play button during playback */
.play-btn-playing {
    cursor: not-allowed; /* Cursor style when the play button is active */
}

</pre></body></html>