/* MNT Tracker custom styles */

nav .container-fluid {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

footer {
    margin-top: 2rem;
    padding: 1rem 0;
    text-align: center;
    opacity: 0.6;
}

/* Folder browser */
#folder-list {
    min-height: 100px;
    border: 1px solid var(--pico-muted-border-color);
    border-radius: var(--pico-border-radius);
    padding: 0.5rem;
}

.folder-item {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    border-radius: var(--pico-border-radius);
}

.folder-item:hover {
    background: var(--pico-secondary-hover-background);
}

.folder-item .icon {
    margin-right: 0.5rem;
    font-size: 1.2em;
}

.folder-item .name {
    flex: 1;
}

.folder-item .count {
    opacity: 0.5;
    font-size: 0.85em;
}

/* Scan progress */
.progress-section {
    margin: 1rem 0;
}

.progress-log {
    background: var(--pico-code-background-color);
    padding: 1rem;
    border-radius: var(--pico-border-radius);
    max-height: 300px;
    overflow-y: auto;
    font-family: var(--pico-font-family-monospace);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Results table */
.doc-found {
    background-color: #c6efce;
    color: #006100;
    text-align: center;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
}

.doc-missing {
    background-color: #ffc7ce;
    color: #9c0006;
    text-align: center;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
}

.detail-value {
    background-color: #ffffcc;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85em;
}

/* Breadcrumb clickable */
#breadcrumb a {
    cursor: pointer;
}
