﻿/* DocsFolderMonitor Generated Styles */
/* Professional styling for documentation pages */

/* Code blocks - syntax highlighting compatible */
pre {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
}

code {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    background-color: #f4f4f4;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

pre code {
    background-color: transparent;
    padding: 0;
}

/* Tables - clean professional look */
table {
    margin: 1rem 0;
}

table thead {
    background-color: #343a40;
    color: white;
}

table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #6c757d;
}

/* Task lists */
.task-list-item {
    list-style: none;
}

.task-list-item input {
    margin-right: 0.5rem;
}

/* Headers */
h1 {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.3rem;
}

/* Links */
a {
    color: #007bff;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Footer sticky positioning */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.footer {
    margin-top: auto;
}

/* Navigation cards - folder and project cards */
.folder-card {
    background-color: rgba(13, 110, 253, 0.08);
    border-left: 4px solid #0d6efd;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.project-card {
    background-color: rgba(13, 110, 253, 0.15);
    border-left: 4px solid #0a58ca;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.folder-card:hover, .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
}

/* Breadcrumb styling */
.breadcrumb {
    background-color: rgba(13, 110, 253, 0.05);
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
}

/* Navbar styling */
.navbar.bg-dark {
    background-color: #0a58ca !important;
}
