/* Widget Styles */

/* Status.cafe Widget */
.status-title {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 15px;
}

#statuscafe {
    padding: 0px;
    background-color: rgba(240, 255, 255, 0);
    border: 1px solid rgba(25, 25, 112, 0);
}

#statuscafe-username {
    margin-bottom: 0.5em;
    margin-left: 0px;
    font-size: 13px;
}

#statuscafe-content {
    margin: 0 1em 0.5em 0px;
    font-size: 12px;
}

#statuscafe img {
    display: none;
}

/* Last.fm widget styles */
#listening {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    color: #fff;
    padding: 0px;
}

#listening .now-playing-text {
    font-size: 15px;
    color: #ffffff;
    margin: 0;
}

#listening .content-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 100%;
}

#listening img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.1); 
}

#trackInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
}

#trackName {
    font-size: 14px;
    margin: 0;
    color: #fff;
}

#artistName {
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Widget box styles */
.widget-box {
    width: 250px;
    height: 200px;
    border: 1px solid #333;
    background-color: #000000b3;
    padding: 20px;
    box-sizing: border-box;
}

.widget-lastfm {
    height: 150px;
}

.widget-status {
    height: 120px;
}

/* Widget container */
.widgets-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}