#no-podcasts-message {
    display: none;
    text-align: center;
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    left: 50%;
}

.podcast-container {
    background-color: rgba(10, 25, 50, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    margin-right: 40px;
    margin-left: 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.podcast-container h3 {
    color: white;
}

#search-bar {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 6px;
    background-color: white;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

#search-input {
    padding: 6px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#search-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    top: 50%;
}

#search-button:hover {
    background-color: #0056b3;
}

.load-more-container {
    background-color: rgba(10, 25, 50, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    margin-right: 40px;
    margin-left: 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#load-more {
    background: none;
    border: none; 
    color: inherit; 
    padding: 0; 
    font: inherit; 
    cursor: pointer;
    color: white;
    top: 50%;
    position: relative;
}

@media (max-width: 990px) {
    .podcast-container {
        margin-right: 25px;
    }
}
