﻿/* Custom scrollbar for better aesthetics */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5e6;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

body {
    font-family: 'Inter', sans-serif;
}

.sidebar {
    background-image: url('https://hospitalcima.com/wp-content/uploads/2019/05/00-colorized2-1400x594.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    .sidebar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 58, 95, 0.85); /* Dark overlay to make text readable */
        z-index: 1;
    }

    .sidebar > * {
        position: relative;
        z-index: 2;
    }

    .sidebar .logo h1 {
        color: white; /* Change color to white for visibility */
    }

.autocomplete-container {
    position: relative;
    width: 100%;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0 0 10px 10px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.autocomplete-list-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .autocomplete-list-item:hover {
        background-color: #f0f4f8;
    }
