/* Custom styles */
body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.btn-link.nav-link {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.btn-link.nav-link:hover {
    color: rgba(255,255,255,.75);
}

.alert {
    margin-bottom: 2rem;
}

.footer {
    margin-top: auto;
    border-top: 1px solid #dee2e6;
}

/* Log viewer styles */
.log-line {
    white-space: pre-wrap;
    word-break: break-all;
    margin-bottom: 2px;
    line-height: 1.4;
}

.dropdown-item.log-file-item {
    padding: 0.5rem 1rem;
}

.dropdown-item.log-file-item:hover {
    background-color: #f8f9fa;
}

.dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
}

#current-file {
    font-size: 0.85rem;
} 