/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --light: #d8eefb;
  --dark: #b8e0f9;
  --darker: #022046;
  --cyan: #82ddf4;
  --purple: #9c82da;
}

body {
  background-color: #d9f8fd;
  /* light blue */
  background-image: url('../img/bg/vb1080.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'VT323', monospace;
  color: #222;
  line-height: 1.2;
  padding: 10px;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #0220465d;
  background-image: url('images/contentbg.jpg');
  border: 2px solid var(--darker);
  ;
  padding: 5px;
  box-shadow: 0 0 5px var(--dark);
  ;
}

/* Header */
header {
  text-align: center;
  background-color: var(--dark);
  padding: 10px;
  background-image: url("../img/header/croppedstation1080.png");
  background-size: cover;
  height: 20em;
}

header h1 {
  color: #00364d;
  font-size: 2.5em;

}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #00364d;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Content Area */
.content-area {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 5px;
  align-items: flex-start;
  /* ✅ Add this line */
}

aside {
  flex: 0 0 200px;
  border-radius: 8px;
}

/* Main (remaining space) */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Make windows fill vertical space */
aside .window,
main .window {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(0, 0, 0);
}

aside .window:not(:last-child),
main .window:not(:last-child) {
  margin-bottom: 15px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 2px dashed var(--dark);
  ;
  font-size: 0.9em;
  color: white;
}

/* Responsive */
@media (max-width: 700px) {
  .content-area {
    flex-direction: column;
  }

  aside,
  main {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  nav a {
    display: inline-block;
    margin: 5px;
  }

  header h1 {
    font-size: 2em;
  }
}

.window-content {
  background-image: linear-gradient(0deg, #e9faff 25%, #d9f4fa 25%, #d9f4fa 50%, #e9faff 50%, #e9faff 75%, #d9f4fa 75%, #d9f4fa 100%);
  background-size: 8.00px 8.00px;
  font-size: 16px;
  padding: 5px;
}

.navwindow {
  background-image: linear-gradient(0deg, #e9faff 25%, #d9f4fa 25%, #d9f4fa 50%, #e9faff 50%, #e9faff 75%, #d9f4fa 75%, #d9f4fa 100%);
  background-size: 8.00px 8.00px;
  font-size: 16px;
}

ul {
  list-style-position: inside;
  list-style: none;
}

hr {
  border-bottom: 1px solid black;
  border-left: none;
  border-right: none;
  border-top: none;
}

td {
  vertical-align: top;
}

.cd {
  border: 1px solid black;
}

/* Start https://www.cursors-4u.com */
* {
  cursor: url(https://cur.cursors-4u.net/cursors/cur-2/cur116.cur), auto !important;
}

/* End https://www.cursors-4u.com */

.window {

  font-family: 'departure', monospace;
  width: 100%;
}

/* .window-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #b8e7f2;
      border-bottom: 2px solid #8ec3d9;
      padding: 5px 10px;
      
    } */
.window-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(184, 225, 252, 1) 0%, rgba(169, 210, 243, 1) 10%, rgba(144, 186, 228, 1) 25%, rgba(144, 188, 234, 1) 37%, rgba(144, 191, 240, 1) 50%, rgba(107, 168, 229, 1) 51%, rgba(162, 218, 245, 1) 83%, rgba(189, 243, 253, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  border-bottom: 1px solid black;
  border-top: 1px solid white;
  padding: 2px 3px 2px 5px;
  color: white;
}

.window-title {
  font-size: 16px;
}

.window-buttons {
  display: flex;
  gap: 5px;
}

.btn {
  width: 24px;
  height: 24px;
  text-align: center;
  background-color: #b8e7f2;
  border: 2px solid #e7fdff;
  color: #2b637d;
  font-weight: bold;
  font-size: 12px;
  box-shadow: 2px 2px 0 #8ec3d9;
  border-radius: 2px;
}


a:link {
  text-decoration: none;
  color: #5da6c3;
}

a:visited {
  text-decoration: none;
  color: #5da6c3;
}

a:hover {
  text-decoration: underline;
  color: rgb(0, 137, 196);
}

a:active {
  text-decoration: none;
  color: #aad1e0;
}

a img {
  transition: transform .2s
}
a img:hover {
  transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.ratsrats {
  width:100%;
  /*why isnt this working lol*/
  /*huhhhh?*/
}

iframe {
  width:100%;
}