:root {
  --green-blue: rgb(0, 129, 135);
  --green: rgb(172, 214, 83);
  --yellow: rgb(252, 209, 22);
  --orange: rgb(248, 132, 44);
  --red: rgb(228, 68, 24);
  --seance: rgb(84, 59, 156);
  --mid-blue: rgb(0, 114, 198);
  --light-blue: rgb(92, 187, 255);
  --dark-blue: rgb(0, 5, 32);
  --black: rgb(0, 0, 0);
  --grey-green: rgb(142, 184, 178);
  --light-gray-green: rgb(194, 222, 218);
  --light-orange: rgb(252, 185, 117);
  --purple: rgb(84, 59, 156);
  --apricot-pink: rgb(243, 179, 148);
  --light-apricot-pink: rgb(255, 187, 154);
  --green-yellow: rgb(225, 212, 41);
  --light-yellow: rgb(246, 238, 140);
  --light-purple: rgb(160, 158, 219);
  --turquoise: rgb(0, 129, 135);
  --dark-grey: rgb(128, 142, 153);
  --grey: rgb(209, 217, 221);
  --light-grey: rgb(241, 243, 244);
  --terra-purple: rgb(189, 144, 234);
  --light-terra-purple: rgb(221, 195, 247);
}


/* General */
body {
  font-family: "Lato", sans-serif;
  background: url(background.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  color: #000;
  margin:0;
  padding: 0;
}


/* Top banner */
.top-banner {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
}
/*vertauscht mit yellow shape*/
.blue-shape {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}
 /*vertauscht mit blue shape*/
.yellow-shape {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--mid-blue);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%);
}

.logo-container {
  position: absolute; top: 15px; right: 15px; z-index: 2;
}
.logo-container img {
  width: 200px; height: auto;
}
.tool-text {
  position: absolute; left:15px;
  color: #fff; max-width: 50%;
}
.tool-text h1 {
  font-size: 1.2rem; font-weight: 400; margin-bottom: 4px;
}
.tool-text p {
  line-height: 1.3rem; margin: 4px 0 0;
}

.tool-text-hetzner  {
  position: absolute; left:40%;;
  color: #fff; max-width: 50%;
}  

.button-container-nav {
  position: absolute; top: 74px; right: 15px; z-index: 2;
  display: flex; overflow:hidden
}

.logout-button {
  color: #fff; 
}

.startpage-button {
  color: #fff;margin-right: 10px; 
}

/* Buttons */


.button-container {
  position: absolute; top: 200px; left:15px
}

button {
  display: inline-block;
  margin-top: 12px; margin-right: 6px; padding: 8px 14px;
  font-size: 0.95rem; font-weight: 700; border-radius: 4px; cursor: pointer;
  background: var(--mid-blue); border: 1px solid #aaa;
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
}
button:hover {
  background:  var(--light-blue); box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.button.delete {
  background: var(--red);
}

/* HTML Elements */
a {
  color: var(--mid-blue);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

/* Status-LED */

.status-led {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  position: absolute; top:26px; left: 167px; z-index: 2;
}

.status-led.green {
  background-color: var(--green); /* Green */
}

.status-led.red {
  background-color: var(--red); /* Red */
}

/* Action Message */
.action-message {
  font-weight: bold;
  font-size: 1.2rem;
  display: flex; justify-content: center;
  text-align: center;
  color: var(--red)
}

/* Cat-Container */
.cat-container {
  position: fixed; bottom: 0; right: 0; z-index: 3; margin: 10px;
}
.cat-container img {
  width: 120px;
  height: auto;
  cursor: pointer;
  filter: invert(9%) sepia(19%) saturate(709%) hue-rotate(210deg) brightness(93%) contrast(90%);
}


/* VM Status */
.vm-status-container {
  border-radius: 4px; padding: 8px; 
  position: absolute; top: 300px; left: 15px; z-index: 2;
}





.navbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: var(--blue);
  padding: 10px 20px;
  border-radius: 0px;       
}

.navbar a {

  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s ease-in-out;
}

.navbar a:hover {
  background: var(--yellow);
  color: var(--mid-blue);
}