/* Global Styles */
body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #374151;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: #2563eb;
}

a:hover {
    color: #1d4ed8;
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
#page-header {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.logo {
    height: 32px;
}

@media (min-width: 768px) {
    .site-title {
        font-size: 1.875rem;
    }

    .logo {
        height: 48px;
    }
}

/* Breadcrumb / Search area */
.breadcrumb-bar {
    background-color: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Fancyindex Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

thead th {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

tbody tr {
    border-bottom: 1px solid #f3f4f6;
}

tbody tr:hover {
    background-color: #f9fafb;
}

tbody td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
}

/* Link customization in table */
tbody td a {
    color: #374151;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

tbody td a:hover {
    color: #2563eb;
}

/* Footer */
#page-footer {
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    border-top: 1px solid #d1d5db;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.footer-left a {
    font-weight: 600;
    color: #1d4ed8;
}

.footer-right {
    font-weight: 700;
}

@media (min-width: 640px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

