/* /Components/Incident/BulletDialog.razor.rz.scp.css */
.textInput[b-ozmz4peyr8] {
  border: none;
  border-bottom: 2px solid #ffa500;
  width: 100%;
}

:focus-visible[b-ozmz4peyr8] {
  outline: none;
}
/* /Components/Incident/BulletsDialog.razor.rz.scp.css */
.modal-content[b-6j7vxykgl5] {
  background-color: aliceblue;
}

.bullet[b-6j7vxykgl5] {
  background-color: beige !important;
  border-radius: 5px;
  margin-bottom: 5px;
  width: 100%;
  border: 2px solid darkgray;
}
/* /Components/Incident/IncidentComponent.razor.rz.scp.css */
/* Standard Layout (Desktop) */
.top[b-6ybjv4r91l] {
  display: grid;
  grid-template-areas:
    'title title title img'
    'spc   spc   spc   spc'
    'bullW bullW bullN bullN'
    'descr descr descr descr';
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

img[b-6ybjv4r91l] {
  max-width: 100%;
  grid-area: img;
  max-height: 300px;
  justify-self: end;
}

.title p[b-6ybjv4r91l] {
  border-left: 6px solid #ccc;
  padding: 0 25px;
  column-count: 2;
  column-gap: 35px;
  text-align: justify-all;
}

/* Mobile Ansicht (kleinere Breite) */
@media (max-width: 1200px) {
  .top[b-6ybjv4r91l] {
    grid-template-areas:
      'img'
      'title'
      'spc'
      'descr'
      'bullW'
      'bullN';
    grid-template-columns: 1fr;
  }

  img[b-6ybjv4r91l] {
    width: 100%;
    grid-area: img;
    object-fit: fill;
    max-height: unset;
    max-width: unset;
  }

  .title p[b-6ybjv4r91l] {
    border-left: 6px solid #ccc;
    padding: 0 15px;
    column-count: 1;
    column-gap: 0;
    text-align: justify;
  }
}

  .top > div[b-6ybjv4r91l] {
    padding: 5px;
  }

.title[b-6ybjv4r91l] {
  background-image: linear-gradient(to right, rgb(13 110 253 / 13%), #0a58ca00);
  grid-area: title;
}

.title h1[b-6ybjv4r91l] {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.spc[b-6ybjv4r91l] {
  grid-area: spc;
  height: 10px;
}

.descr[b-6ybjv4r91l] {
  grid-area: descr;
  text-align: justify;
  white-space: pre-wrap;
  border-left: 6px solid #ccc;
  margin: 20px;
}

.dates[b-6ybjv4r91l] {
  grid-area: dates;
}

.qual[b-6ybjv4r91l] {
  grid-area: qual;
  justify-self: end;
}

.bullWichtig[b-6ybjv4r91l] {
  grid-area: bullW;
}

.bullNeu[b-6ybjv4r91l] {
  grid-area: bullN;
}

.checked[b-6ybjv4r91l] {
  color: #ffa500;
}

.plusNews[b-6ybjv4r91l] {
  text-align: center;
}

:focus-visible[b-6ybjv4r91l] {
  outline: none;
}

.textInput[b-6ybjv4r91l] {
  border: none;
  border-bottom: 2px solid #ffa500;
  width: 100%;
  font-size: xx-large;
}

.textInputSm[b-6ybjv4r91l] {
  border: none;
  border-bottom: 2px solid #ffa500;
  width: 100%;
  font-size: small;
}

.textareaInput[b-6ybjv4r91l] {
  border: none;
  border-bottom: 2px solid #ffa500;
  width: 100%;
  font-size: large;
}

.plus[b-6ybjv4r91l] {
  line-height: 1vw;
  position: absolute;
  cursor: pointer;
  margin-left: 4px;
}

h4[b-6ybjv4r91l] {
  display: inline-block;
}

.gradient-text[b-6ybjv4r91l] {
  background: linear-gradient(to right, #e94e09, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.flame-button[b-6ybjv4r91l] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

  .flame-button:hover .oi-fire[b-6ybjv4r91l] {
    color: orange; /* Hover-Effekt */
    transform: scale(1.2); /* Leichtes Vergrößern */
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .flame-button:active .oi-fire[b-6ybjv4r91l] {
    color: red; /* Effekt beim Klicken */
    transform: scale(1.1);
  }

  .flame-button[disabled][b-6ybjv4r91l] {
    opacity: 0.5;
    cursor: not-allowed;
  }

.rotating[b-6ybjv4r91l] {
  animation: spin-b-6ybjv4r91l 1s linear infinite;
}

@keyframes spin-b-6ybjv4r91l {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* /Components/News/NewsComponent.razor.rz.scp.css */
.top[b-7adu5pjj4s] {
  display: grid;
  margin: 12px;
  background-color: mintcream;
  box-shadow: 2px 2px 3px 0px #37264f73;
  grid-template-areas:
    'title datum'
    'descr descr';
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

  .top > div[b-7adu5pjj4s] {
    padding: 5px;
  }

h5[b-7adu5pjj4s] {
  align-self: center;
  justify-self: start;
  grid-area: title;
  word-wrap: hyphenate;
}

.datum[b-7adu5pjj4s] {
  grid-area: datum;
  justify-self: end;
}

.descr[b-7adu5pjj4s] {
  grid-area: descr;
  text-align: justify;
  border-top: 2px solid #E9E9E9;
  white-space:pre-wrap;
}

.checked[b-7adu5pjj4s] {
  color: orange;
}

:focus-visible[b-7adu5pjj4s] {
  outline: none;
}

.textInput[b-7adu5pjj4s] {
  border: none;
  border-bottom: 2px solid #ffa500;
  width: 100%;
  font-size: xx-large;
}

.textareaInput[b-7adu5pjj4s] {
  border: none;
  border-bottom: 2px solid #ffa500;
  width: 100%;
  font-size: large;
}
/* /Components/News/NewsDialog.razor.rz.scp.css */
.col-form-label[b-2pyozu9tci] {
  font-weight: bold;
}

form .row[b-2pyozu9tci] {
  --bs-gutter-y: 0.5rem;
  margin-top: inherit;
}
/* /Pages/Incident.razor.rz.scp.css */
.top[b-a3jaweky3w] {
  display: grid;
  /*margin: 12px;*/
  background-color: aliceblue;
  grid-template-areas:
    'img   title title title'
    'descr descr descr descr'
    'cnt   cnt   dates dates'
    'rec   rec   qual  qual';
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

  .top > div[b-a3jaweky3w] {
    padding: 10px;
    font-size: large;
    font-weight: lighter;
    line-height: 1.9rem;
  }

  .top > .descr[b-a3jaweky3w] {
    column-width: 400px;
    column-rule-color: red;
    column-rule-width: 1px;
    column-rule-style: dotted;
  }

h2[b-a3jaweky3w] {
  align-self: center;
  justify-self: center;
  grid-area: title;
}

img[b-a3jaweky3w] {
  max-width: 100%;
  grid-area: img;
}

.descr[b-a3jaweky3w] {
  grid-area: descr;
  text-align: justify;
  white-space: pre-wrap;
}

.cnt[b-a3jaweky3w] {
  grid-area: cnt;
}

.dates[b-a3jaweky3w] {
  grid-area: dates;
  justify-self: end;
}

.rec[b-a3jaweky3w] {
  grid-area: rec;
}

.qual[b-a3jaweky3w] {
  grid-area: qual;
  justify-self: end;
}

.checked[b-a3jaweky3w] {
  color: orange;
}
/* /Pages/Main.razor.rz.scp.css */
.card img[b-em5o8uq4dx] {
  max-width: 100%;
  margin-top: 16px;
  margin-left: 2px;
}

.status[b-em5o8uq4dx] {
  font-size: 1.1rem;
  text-align-last: end;
}

.header[b-em5o8uq4dx] {
  border-bottom: 2px solid darkgray;
  margin-left: 5px;
}

  .header img[b-em5o8uq4dx] {
    transform: scale(0.7);
    vertical-align: bottom;
  }

  .header h1[b-em5o8uq4dx] {
    display: inline;
  }

.maingrid[b-em5o8uq4dx] {
  display: flex;
  margin: 10px;
  justify-content: space-between;
}

.box[b-em5o8uq4dx] {
  width: 48%;
}

.pop[b-em5o8uq4dx] {
  margin: 10px;
  --bs-gutter-x: 0;
  justify-content: space-between;
}

  .pop h3[b-em5o8uq4dx] {
    border-bottom: 2px solid lightgray;
  }

.card[b-em5o8uq4dx] {
  cursor: pointer;
  height: 245px;
  text-overflow: ellipsis;
  overflow: hidden;
}

.pop .card[b-em5o8uq4dx] {
  width: 32.5%;
}

.pop .card-header p[b-em5o8uq4dx] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

@media (max-width: 1500px) {
  .pop .card[b-em5o8uq4dx] {
    width: 49.5%;
  }
}

@media (max-width: 1050px) {
  .pop .card[b-em5o8uq4dx] {
    width: 99.5%;
  }
}
/* /Pages/News.razor.rz.scp.css */
.top[b-1yaasrjmei] {
  display: grid;
  background-color: mintcream;
  grid-template-areas:
    'datum autor'
    'title title'
    'descr descr';
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

  .top > div[b-1yaasrjmei] {
    padding: 5px;
  }

h3[b-1yaasrjmei] {
  align-self: center;
  justify-self: center;
  grid-area: title;
  word-wrap: hyphenate;
}

.datum[b-1yaasrjmei] {
  grid-area: datum;
  justify-self: start;
}

.autor[b-1yaasrjmei] {
  grid-area: autor;
  justify-self: end;
}

.descr[b-1yaasrjmei] {
  grid-area: descr;
  text-align: justify;
  border-top: 2px solid #E9E9E9;
  white-space: pre-wrap;
}

.checked[b-1yaasrjmei] {
  color: orange;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.nav-link[b-8ahen79ohv] {
  color: white;
}

.activeLink[b-8ahen79ohv] {
  filter: brightness(1);
}

.inactiveLink[b-8ahen79ohv] {
  filter: brightness(0.5);
  filter: blur(1px);
}

li a span[b-8ahen79ohv] {
  margin-right: 6px;
  color: orange;
}

nav ul li a[b-8ahen79ohv] {
  cursor: pointer;
}

.btnsave[b-8ahen79ohv] {
  color: red;
}

.bg-dark[b-8ahen79ohv] {
  background-color: #002458 !important;
}
.login-btn[b-8ahen79ohv] {
  text-decoration:none;
  margin-left:10px;
  padding:5px 9px;
  background:none;
  color:white;
  outline:none;
  border: 1px white solid;
  border-radius:5px;
}
  .login-btn:hover[b-8ahen79ohv] {
    background:white;
    color: #fb4a2a;
  }
