* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter";
    line-height: 1;
    background-color: #030303;
    color: #fff;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 10px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    background-color: #161616;
    color: #fff;
    outline-offset: 4px;
    outline: 2px solid transparent;
    transition: 0.3s;
    text-align: center;
    font-family: inherit;
}

input[type="text"]:focus {
    outline: 2px solid #232323;
    border-radius: 4px;
}

#searchInput {
    text-align: center;
    height: 32px;
}

button {
    font-family: inherit;
    text-transform: uppercase;
}

main {
    padding: 0;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

#podcastDetailsPanel {
    position: fixed;
    top: 0;
    transform: translate(0%, 0%);
    background-color: #060606;
    padding: 72px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

#podcastDetailsPanel.hidden {
    display: none;
}

#podcastDetailsContent {
    margin-bottom: 20px;
}

#subscribeBtn {
    background-color: #536ee7;
    color: #060606;
    padding: 10px 20px;
    /* outline: 2px solid #33333380; */
    outline-offset: -2px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    height: 32px;
    line-height: 1;
}

#subscribeBtn.unsubscribe {
    background-color: transparent;
    outline: 2px solid #536ee7;
    outline-offset: -2px;
    color: #536ee7;
}

#closeBtn {
    background-color: #333;
    color: #fff;
    padding: 4px;
    border: none;
    border-radius: 32px;
    cursor: pointer;
    top: 20px;
    position: fixed;
    height: auto;
    line-height: 1;
    outline: 2px solid transparent;
}

#closeBtn:focus {
    outline: 2px solid #fff;
}

#searchPanel {
    padding: 20px;
}

#searchResults {
    padding: 20px 0 0 0;
}

.result-item:focus {
    outline: 2px solid #232323;
    outline-offset: 4px;
}

.result-item {
    display: flex;
    margin-bottom: 10px;
    outline: 2px solid transparent;
    border-radius: 6px;
}

.result-item>img {
    border-radius: 6px;
    box-shadow: 0 0 7px #00000020;
    outline: 1px solid #ffffff10;
    margin-right: 20px;
}

.result-item-content {
    align-self: center;
}

#detailsHeader {
    display: flex;
    height: 100px;
}

#detailsHeaderText {
    align-self: center;
}

#detailsArtwork>img {
    border-radius: 6px;
    margin-right: 20px;
}

#subscribedPodcastsPanel {
    padding: 0 20px 20px 20px;
}

#subscribedPodcastsList {
    margin-top: 10px;
}