﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* ===== HEADER ===== */

.modern-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

/* Layout */
.header-container {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

/* LOGO größer + oben links */
.logo {
    height: 110px; /* 🔥 größer */
    width: auto;
    object-fit: contain;
}

/* Textblock */
.header-text {
    margin-left: 25px;
}

/* Titel */
.portal-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    line-height: 1.1;
}

/* Klinikname */
.clinic-name {
    font-size: 2rem;
    color: #000;
    margin-top: 5px;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 3px solid #ccc;
    border-top: 3px solid #2b7cff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.delete-icon {
    width: 42px; /* 🔥 von 18 → 24 */
    height: 42px;
    opacity: 0.7;
    transition: 0.2s;
}


.delete-btn {
    border: none; /* 🔥 entfernt grauen Rahmen */
    background: transparent;
    padding: 0;
    margin-left: 10px;
    cursor: pointer;
}

.logo-center {
    height: 120px;
    margin: 20px 0;
}

/*.anrede {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}*/
.anrede {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.intro-text {    
    margin-bottom: 25px;
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}
.hinweis-text {
    background: #eef7fb;
    border-left: 4px solid #009ee3;
    padding: 15px 18px;
    border-radius: 6px;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.6;
    font-size: 0.95rem;
}

.upload-box {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 20px;
    background: #fafafa;
    margin-bottom: 25px;
}

/* Formularfelder leicht grau statt reinweiß */
.form-control,
.form-select {
    background-color: var(--bs-light);
}

/* Icon bei Fehler/Error  */ 
.field-error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    border-radius: 50%;
    background: #dc3545;
    color: white;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
}

/* Bootstrap-Fehlericon im Eingabefeld ausblenden */
.form-control.is-invalid,
textarea.form-control.is-invalid,
.form-select.is-invalid {
    background-image: none !important;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #6c757d;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

    #scrollTopBtn:hover {
        background: #5c636a;
    }







