/* Custom styles for GP Notes Extractor */

/* Logo styling */
.mmc-logo {
    filter: brightness(1.2);
    max-width: 250px; /* Increased from 200px */
    transition: transform 0.3s ease;
}

.mmc-logo:hover {
    transform: scale(1.05);
}

/* Add a subtle separator between logo and navbar */
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: -1px; /* Remove gap */
}

/* Footer styling */
.footer {
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Timeline styling */
#injury-timeline .list-group-item {
    background-color: rgba(33, 37, 41, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
    border-radius: 6px;
}

#injury-timeline .list-group-item h6 {
    color: var(--bs-primary);
    font-weight: 600;
}

/* Search result highlighting */
mark {
    background-color: rgba(255, 193, 7, 0.4);
    color: white;
    padding: 2px 3px;
    border-radius: 3px;
}

/* Entry badges */
.entry-date, .entry-page {
    font-size: 0.85rem;
    display: inline-block;
    margin-right: 8px;
}

/* Make the navbar logo more prominent */
.navbar-brand {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Improve readability of medical content */
.p-3.border.rounded {
    line-height: 1.5;
    font-size: 0.95rem;
}