body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.container {
    width: 90%;
    max-width: 1100px;
    text-align: center;
}

#SRotify {
    font-family: "Segoe Script", sans-serif;
    font-size: 50px;
    color: #1DB954;
    font-weight: bold;
    justify-self: center;
    margin-bottom: 20px;
    text-shadow: 1px 5px 2px #006400;
}


.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: stretch;
}

#list {
    flex: 1;
    min-width: 300px;
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
}

a {
    color: #77baff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#stations {
    list-style: none;
    padding: 0;
    margin: 0;
}

#stations li {
    text-align: left;
    padding: 5px 0;
}

.info-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 20px;
}

#radioPane, #spotifyPane {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
}

button {
    background-color: #1DB954;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 1px 1px 1px #000;
}

button:hover {
    background-color: #17a543;
}

#radioLink {
    cursor: pointer;
    font-family: "Comic Sans MS", sans-serif;
    font-size: 18px;
    color: #77baff;
    text-shadow: 1px 1px 1px #000;
}

#radioDescription {
    font-style: italic;
    font-size: 15px;
    color: #bbbbbb;
}

/* Media Query: Adjust layout for mobile */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    #list {
        width: 100%;
        order: 2;
    }

    .info-container {
        width: 100%;
    }
}
