.spotify-panel {
    width: 30%;
    margin-right: 10%;

    border-color: #67e8f9;
    background-color: rgba(103, 232, 249, 0.10);
}

.spotify-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.spotify-heading span {
    font-size: 24px;
}

.spotify-heading h2 {
    margin: 0;

    font-family: "Courier New", monospace;
    font-size: 22px;
}

.spotify-placeholder {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 10px;

    border: 1px solid rgba(103, 232, 249, 0.35);
    border-radius: 7px;

    background-color: rgba(103, 232, 249, 0.06);
}

.spotify-note {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background-color: rgba(103, 232, 249, 0.15);

    font-size: 28px;
}

.spotify-placeholder strong {
    font-family: "Courier New", monospace;
}

.spotify-placeholder p {
    margin: 4px 0 0;
    font-size: 12px;
    opacity: 0.7;
}

#spotify-login {
    margin-top: 12px;

    padding: 7px 12px;

    border: 2px solid #67e8f9;
    border-radius: 6px;

    background-color: rgba(103, 232, 249, 0.12);
    color: white;

    font-family: "Courier New", monospace;
    font-size: 12px;

    cursor: pointer;
}

#spotify-login:hover {
    background-color: rgba(103, 232, 249, 0.25);
}