.navbar {
    background-color: #2d3748 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--primary-color);
}

.navbar .container {
    max-width: 100%;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--heading-color) !important;
}

/* Search Container Styles */
.search-container {
    position: relative;
    width: 100%;
}

.search-container .form-control {
    padding-right: 35px; /* Platz für das X */
}

.clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #a0aec0;
    font-size: 1.5rem;
    line-height: 1;
    z-index: 5;
    display: none; /* Wird per JS angezeigt */
    height: 24px;
    width: 24px;
    text-align: center;
}

.search-container:hover .clear-search {
    color: var(--text-color);
}

/* Floating Action Bar */
.floating-action-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    z-index: 1000; /* High enough for content, but below Bootstrap Modal (1050) */
    width: 90%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* Login Page Styles */
.login-container {
    max-width: 400px;
    margin: 100px auto;
}

.login-card {
    padding: 2rem;
}
