/* =========================
   Gitweb GitLab-like theme
   Minimal modern restyle
   ========================= */

body {
    background: #f6f8fa;
    color: #24292f;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    max-width: 1200px;
    margin: 0 auto;
}

/* Links (GitLab-like blue) */
a {
    color: #1f75cb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
div.page_header {
    background: #ffffff;
    border-bottom: 1px solid #d0d7de;
    padding: 12px 16px;
}

/* Main content container */
div.page_body {
    background: #ffffff;
    margin: 16px;
    padding: 16px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
}

/* Repo title */
div.title {
    font-size: 18px;
    font-weight: 600;
}

/* Tables (file list, commits) */
table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    padding: 8px 10px;
    border-bottom: 1px solid #eaecef;
}

/* Hover rows like GitLab */
tr:hover {
    background: #f1f8ff;
}

/* Code blocks */
pre, code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    background: #f6f8fa;
    padding: 2px 4px;
    border-radius: 4px;
}

/* Branch/tag labels */
span.refs {
    background: #eaeef2;
    border-radius: 3px;
    padding: 2px 6px;
    font-size: 12px;
}

/* Footer */
div.page_footer {
    margin-top: 20px;
    padding: 10px;
    color: #57606a;
    font-size: 12px;
}

img.logo {
    display: none !important;
}
