@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root{color: #fff !important
}

.ibm-plex-mono-thin {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
  font-style: normal;
}

.ibm-plex-mono-extralight {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
  font-style: normal;
}

.ibm-plex-mono-light {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: normal;
}

.ibm-plex-mono-regular {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-mono-medium {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: normal;
}

.ibm-plex-mono-semibold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-style: normal;
}

.ibm-plex-mono-bold {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: normal;
}

.ibm-plex-mono-thin-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 100;
  font-style: italic;
}

.ibm-plex-mono-extralight-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 200;
  font-style: italic;
}

.ibm-plex-mono-light-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 300;
  font-style: italic;
}

.ibm-plex-mono-regular-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.ibm-plex-mono-medium-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-style: italic;
}

.ibm-plex-mono-semibold-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-style: italic;
}

.ibm-plex-mono-bold-italic {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  font-style: italic;
}
/* importing noncence */

body {
    background-color: #222;
    background-image: url('../bg-patt.png');
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: 150px 150px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    animation: moveBackground 520s linear infinite;
}

@keyframes moveBackground {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% -100%;
    }
}

.greeting {
    /*asdasd */
}

/* Mobile-first responsive design */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

.left-col,
.cent-col,
.right-col {
    padding: 15px;
    border: 1px solid #fff;
    box-sizing: border-box;
}

.left-col {
    order: 1;
}

.cent-col {
    order: 2;
    flex: 1;
}

.right-col {
    order: 3;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive typography */
.greeting {
    font-size: 1.2rem;
    word-wrap: break-word;
}

/* Tablet view */
@media screen and (min-width: 768px) {
    .container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .left-col {
        flex: 0 0 250px;
        order: 1;
    }
    
    .cent-col {
        flex: 1;
        order: 2;
        min-width: 0;
    }
    
    .right-col {
        flex: 0 0 200px;
        order: 3;
    }
}

/* Desktop view - EXACTLY as original */
@media screen and (min-width: 1200px) {
    .container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        min-height: 95vh;
    }
    
    .left-col {
        flex: 1;
        padding: 20px;
        border: 3px solid #fff;
        margin-left: 200px;
        order: 1;
    }
    
    .cent-col {
        flex: 2;
        padding: 20px;
        border: 3px solid #fff;
        margin-left: 4px;
        order: 2;
    }
    
    .right-col {
        flex: 1;
        padding: 20px;
        border: 3px solid #fff;
        margin-left: 4px;
        margin-right: 200px;
        order: 3;
    }
}

body > div > div.left-col > ul > li > a{
  color: white;
  text-decoration: underline dashed #636363
}

fieldset {
    color: #f5f5dc;
    border-color: #f5f5dc80;
    margin-top: 10px;
}

/* Additional mobile optimizations */
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
    
    .greeting {
        font-size: 1.1rem;
    }
    
    fieldset {
        margin: 5px 0;
    }
    
    .left-col ul {
        padding-left: 0;
    }
}

/* Status.cafe */
#statuscafe {
  padding: .5em;
}
#statuscafe-username {
  margin-bottom: .5em;
}
#statuscafe-content {
  margin: 0 1em 0.5em 1em;
}

#statuscafe-username > a{
  color: #fff;
  text-decoration: underline dashed #636363
}

/* Music */

#track-title{
  margin-top: 2px;
}

.musicplayer-container{
  color: #fff;
}

/*  TODO: Need fixing
/!* Responsive iframe for radio page *!/
.right-col iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border: none;
}

/!* Ensure right column takes available space *!/
.right-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.right-col iframe {
  flex: 1;
  min-height: 300px;
}

*/