@font-face {
  font-family: 'Caveat';
  src: url('/assets/fonts/Caveat-Regular.ttf') format('truetype'),
       url('/assets/fonts/Caveat-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* Default Theme */
:root {
    --side-bg: #fff;
    --container: #fff;
    --title: #344767;
    --subtitle: #67748e;
    --link: #67748e;
    --border-radius: 15px;
}
body {
    background: var(--side-bg);
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-size: 15px;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Caveat', sans-serif;
    outline: none;
    text-decoration: none;
    list-style: none;
    font-display: swap;
}
a {
    text-decoration: none;
    line-height: 1.2;
}



@keyframes slideInBounceRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    60% {
        transform: translateX(-15px);
        opacity: 1;
    }
    80% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}
#flash-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 999;
    height: 100%;
}
.flash-message {
    display: flex;
    background-color: #2ecc71;
    border-radius: 5px;
    overflow: hidden;
    max-width: 400px;
    color: #fff;
    animation: slideInBounceRight 0.3s ease-out;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
    pointer-events: auto !important;
}
.flash-icon {
    background-color: #27c265;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.flash-icon-btn {
    background-color: #27c265;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.flash-text {
  padding: 0 16px;
  flex-grow: 1;
  font-weight: 500;
  align-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flash-close {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: #fff;
    width: 48px;
    height: 100%;
    cursor: pointer;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}
/* SUCCESS – Grün */
.flash-success {
    background-color: #2ecc71;
}
.flash-success .flash-icon,
.flash-success .flash-icon-btn {
    background-color: #27c265;
}
/* DANGER – Rot */
.flash-danger {
    background-color: #e74c3c;
}
.flash-danger .flash-icon,
.flash-danger .flash-icon-btn {
    background-color: #c0392b;
}
/* WARNING – Gelb */
.flash-warning {
    background-color: #f1c40f;
    color: #000;
}
.flash-warning .flash-icon,
.flash-warning .flash-icon-btn {
    background-color: #f39c12;
}
/* INFO – Blau */
.flash-info {
    background-color: #3498db;
}
.flash-info .flash-icon,
.flash-info .flash-icon-btn {
    background-color: #2980b9;
}



.Main {
  flex-direction: column;
  position: relative;
  margin-left: 320px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 0px;
}

.Container {
    margin: 0 auto;
    max-width: 1200px;
}