.audio-downloader-form {
    margin-bottom: 50px;
}

.audio-downloader-input-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 45px 20px 45px 20px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background-color: white;
}

.audio-downloader-input-container .audio-download-link-input, .audio-downloader-input-container .audio-download-link-input:focus {
    line-height: 1.5;
    background-color: white;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding: 10px 10px;
    width: 100%;
    text-align: center;
    color: black;
}

.audio-download-methods-separator {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* .audio-download-methods-separator::before,
.audio-download-methods-separator::after {
    content: '';
    width: 10%;
    border-bottom: 2px solid #ccc;
} */

.audio-download-methods-separator span {
    padding: 0 10px;
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
}

.download-audio-button {
    width: 100%;
    font-size: 25px;
    font-weight: bold;
    border-radius: 10px;
    margin-top: 10px;
}

.download-audio-button:disabled {
    background-color: gray;
    color: white;
}

.audio-download-link-see-supported-sites {
    text-decoration: underline;
}

.popup-container {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.popup-wrapper {
    position: relative;
}

.popup-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    min-width: 30vw;
    max-width: 90vw;
    max-height: 80vh;
    padding: 20px;
    position: relative;
    border: 1px solid black;
    border-radius: 5px;
    overflow-y: auto;
}

.popup-close-button {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: white;
    width: 30px;
    height: 30px;
    padding: 0px;
    border: 1px solid black;
    border-radius: 50%;
    font-size: 20px;
    color: black;
    font-weight: bold;
}

.popup-close-button:hover {
    color: white;
    background-color: red;
}

.audio-download-link-supported-sites-list {
    margin-top: 0px !important;
}

.audio-download-link-supported-sites-list li {
    font-size: 16px;
    line-height: 1.5;
}

.audio-download-links-container {
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 5px;
    border-left: 5px solid #facc15;
    background-color: #fefce8;
    margin-top: 20px;
}

.audio-download-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    border: 1px solid gray;
    border-radius: 5px;
    background-color: white;
    width: 100%;
}

.audio-download-link-item-template {
    display: none;
}

.audio-download-links-container .audio-download-links-title {
    font-size: 20px;
    color: #845709;
    line-height: 1.5;
    margin-top: 0px;
    margin-bottom: 0px;
}

.audio-download-links-description {
    font-size: 18px;
    line-height: 1.5;
}

.download-item-info-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-item-content-type {
    border: 1px dashed lightgray;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1.5;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.download-item-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-item-quality, .download-item-extension {
    border: 1px dashed lightgray;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1.5;
    font-size: 14px;
}

.download-item-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.download-item-link {
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
}

.download-item-link-open-button, .download-item-link-open-button:hover, .download-item-link-open-button:focus {
    font-size: 14px;
    line-height: 1.5;
    padding: 4px 10px;
    background-color: #d58c0e;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none !important;
}

.download-item-link-open-button:hover {
    background-color: #b7791f;
}