html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Grau für den Hintergrund */
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.admin-header {
    background-color: #007bff; /* Blau */
    color: white;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
}

.admin-header .container-fluid {
    padding: 0;
}

.admin-header .row {
    margin: 0;
    width: 100%;
}

.admin-header .brand {
    font-size: 24px;
    font-weight: bold;
    padding-left: 15px;
}

.admin-header .admin-user {
    color: white;
    text-decoration: none;
    padding-right: 15px;
}

.custom-container {
    min-height: calc(100vh - 60px); /* Subtrahiere die Höhe der Header-Leiste */
    padding-top: 20px;
    background-color: #f8f9fa; /* Grau, passend zum Hintergrund */
    font-size: 18px;
}

.sidebar {
    background-color: #e9ecef; /* Leichtes Grau für die Sidebar */
    padding: 15px;
    min-height: calc(100vh - 60px); /* Gleiche Höhe wie der Container */
}

.content {

    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-height: calc(100vh - 60px); /* Gleiche Höhe wie der Container */
}



.admin-header .frontend-link {
    color: white;
    text-decoration: none;
    margin-right: 10px;
}

.admin-header .frontend-link:hover {
    text-decoration: underline;
}

.admin-header .separator {
    color: white;
    margin-right: 10px;
}

.admin-header .user-info {
    color: white;
}
@font-face {
    font-family: 'Arimo';
    src: url('../../assets/fonts/Arimo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

h1, h2, h3 {
    font-family: 'Arimo', sans-serif;
    font-weight: bold;
}

h1 {
    margin-bottom: 40px;
}

.backend ul#seitenbaum ul li {
    margin-left: 20px; /* oder ein anderer Wert, um die Einrückung anzupassen */
}


/* Standardgröße für größere Bildschirme */
@media (min-width: 992px) {
    #base_url,
    #placeholder_name {
        width: 33%; /* 1/3 der Standardgröße für größere Bildschirme */
    }
}

/* Für mittlere Bildschirme */
@media (min-width: 768px) and (max-width: 991.98px) {
    #base_url,
    #placeholder_name {
        width: 50%; /* Etwas größer auf mittleren Bildschirmen */
    }
}

/* Für kleine Bildschirme */
@media (max-width: 767.98px) {
    #base_url,
    #placeholder_name {
        width: 100%; /* Volle Breite auf kleinen Bildschirmen */
    }
}

legend {

    text-transform: uppercase;
    font-size: 18px;
    font-weight: 400;
}


  .row {
      border: none;
      background-color: #f4f4f4;
      padding: 15px;
      margin-bottom: 15px;
  }


  .rezepte label.form-label {
      text-transfrom: uppercase;
      }
  }
