body {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), 
                url('../img/background-planer.png') no-repeat center center fixed;
    background-size: cover;
}
.logo {
    max-width:none;
}
/* Zusätzliche Styles für Scrollbars etc. */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #CBD5E0 #EDF2F7;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #EDF2F7;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #CBD5E0;
    border-radius: 4px;
}

/* Animation für Notifications */
@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification {
    animation: slideIn 0.3s ease-out;
}

/* Input und Textarea Basis-Styles */
input[type="text"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background-color: white;
    margin-top: 4px;
    box-sizing: border-box;
}

/* Fokus-Zustand */
input[type="text"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Hover-Zustand */
input[type="text"]:hover,
input[type="date"]:hover,
input[type="time"]:hover,
input[type="number"]:hover,
textarea:hover,
select:hover {
    border-color: #94a3b8;
}

/* Label-Styles */
label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
    display: block;
}

/* Formular-Gruppen Abstand */
.form-group {
    margin-bottom: 20px;
}
/* Route Summary Modal Styles */
#routeSummaryModal {
    scroll-behavior: smooth;
}

#routeSummaryContent {
    scrollbar-width: thin;
    scrollbar-color: #CBD5E0 #EDF2F7;
}

#routeSummaryContent::-webkit-scrollbar {
    width: 8px;
}

#routeSummaryContent::-webkit-scrollbar-track {
    background: #EDF2F7;
}

#routeSummaryContent::-webkit-scrollbar-thumb {
    background-color: #CBD5E0;
    border-radius: 4px;
}

.modal-enter {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.settings-tab-button {
    color: #4B5563;
    transition: all 0.2s;
}

.settings-tab-button:hover {
    color: #1F2937;
}

.settings-tab-button.active {
    color: #0E7490;
    background-color: #E5E7EB;
}

/* Dashboard Tab Styles */
.tab-button {
    color: #6B7280;
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.tab-button:hover {
    color: #374151;
    background-color: #F3F4F6;
}

.tab-button.active {
    color: #0E7490;
    background-color: #E0F2FE;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.tab-button.active:hover {
    color: #0E7490;
    background-color: #E0F2FE;
}

/* Scrollbar Hide für mobile Tab Navigation */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}