body {
    font-family: monospace;
}
.padded {
    padding: 10px;
}
.sticker {
    position: absolute;
    z-index: 10;
}
.centeredstuff {
    text-align: center;
}
div.none {
    outline: none;
}
.dividers{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin: -10px;
}
.wrapper {
    width: 80%;
    display: grid;
    margin-right: auto;
    margin-left: auto;
    gap: 10px;
}
.outlined{
    outline: black 2px solid;
    background-color: white;
}
h3 {
    margin-left:10px
}
.dashedtop {
    border-top: 2px dashed #000;
    border-bottom: none;
}
@media only screen and (max-width:800px){
    .wrapper
        {width: 90%;
        display: grid;
        margin-right: auto;
        margin-left: auto;
        grid-template-rows: 1fr 10fr 1fr;
        }
}
.grid {
    display: grid;
}
@counter-style triangless{
    system: cyclic;
    symbols: ">";
    suffix: " "
}
li{    
    margin-bottom: 11px;
}
ul{
    padding-left: 12px;
    list-style-type: triangless;
}
/*Music Player CSS starts here*/
#musicplayer{
    background:white; /* background color of player */
    border:0; /* border around player */
    width:inherit; /* width of the player */
}

.songtitle{
    padding:5px; /* padding around song title */
    display:block;
}

.controls{
    font-size:18px !important; /* size of controls */
    background-color:#ffffff; /* background color of controls */
    text-align:center;
    width:100%;
}

.seeking{
    background-color:#ffffff; /* background color of seeking bar */
    display:flex;
    justify-content: space-evenly;
    padding:5px; /* padding around seeking bar */
}

.current-time{
    padding-right:5px;
}

.total-duration{
    padding-left:5px;
}

#musiccontrol:hover{
    cursor:pointer;
}

#musiccontrol{
    color:#000000; /* color of controls */;
    height: 20px;
    width: 20px;

}

input[type=range] {
    width: 100%;
    background-color:#ffffff; /* background color of seeking bar - make the color same as .seeking background color */
}

input[type=range]:focus {
    outline: none;
}

/* settings for chrome browsers */
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px; /* thickness of seeking track */
    cursor: help;
    background: #000000; /* color of seeking track */
}

input[type=range]::-webkit-slider-thumb {
    height: 10px; /* height of seeking square */
    width: 10px; /* width of seeking square */
    border-radius: 0px; /* change to 5px if you want a circle seeker */
    background: #000; /* color of seeker square */
    cursor: help;
    -webkit-appearance: none;
    margin-top: -4.5px; 
}

/* settings for firefox browsers */
input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px; /* thickness of seeking track */
    cursor: help;
    background: #000000; /* color of seeking track */
}

input[type=range]::-moz-range-thumb {
    height: 10px; /* height of seeking square */
    width: 10px; /* width of seeking square */
    border-radius: 0px; /* change to 5px if you want a circle seeker */
    background: #000000; /* color of seeker square */
    cursor: help;
    border:none;
}
/*Music Player CSS ends here*/
/*Status Cafe stuff here*/
#statuscafe {
    padding: .5em;
    background-color: 0;
    border-top: 2px dashed #000000;
    height: auto;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}