/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-title a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-link .favicon-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #3498db;
}

/* Main content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Section styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Main content section */
.main-content-section {
    padding: 2rem 0;
    background: #fff;
    min-height: 100vh;
}

.content-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Filter column */
.filter-column {
    flex: 0 0 300px;
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    align-self: flex-start;
}

.filter-column .filter-menu {
    width: 100%;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

/* Content column */
.content-column {
    flex: 1;
    min-width: 0;
}

.packages-section {
    padding: 0;
    background: transparent;
}

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.package-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.package-version {
    background: #3498db;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.package-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.package-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.package-query {
    background: #f1f3f4;
    color: #5f6368;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.package-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: #f1f3f4;
    color: #5f6368;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Package sources styling */
.package-sources {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.sources-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.source-item {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.source-item .btn {
     border: none!important;
}

.source-item:last-child {
    border-bottom: none;
}

.source-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    background: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.copy-oras {
    background: #17a2b8;
    color: white;
}

.copy-oras:hover {
    background: #138496;
}

.http-link {
    background: #28a745;
    color: white;
    border: 1px solid #218838;
    text-decoration: none;
}

.http-link:hover {
    background: #218838;
}

.package-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #dee2e6;
}

.btn-secondary:hover {
    background: #e9ecef;
}

/* About section */
.about-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

/* Copy to clipboard functionality */
.copy-query {
    position: relative;
}

.copy-query.copied {
    background: #27ae60;
    color: white;
}

.copy-query.copied::after {
    content: 'Copied!';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Search functionality styles */
.search-container {
    max-width: 600px;
    margin: 2rem auto 1rem;
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: #3498db;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.2);
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #666;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #333;
    outline: none;
    border-radius: 50px;
}

.search-input::placeholder {
    color: #999;
}

.search-clear {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.search-clear:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

.search-results-info {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

#results-count {
    font-weight: 600;
    color: #fff;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.no-results p {
    color: #666;
    font-size: 1rem;
}

/* Responsive search design */
@media (max-width: 768px) {
    .search-container {
        margin: 1.5rem auto 0.5rem;
        max-width: 90%;
    }
    
    .search-input {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 0.75rem;
        font-size: 0.9rem;
    }
    
    .search-clear {
        right: 0.75rem;
        padding: 0.375rem;
    }
    
    .search-results-info {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}

/* Search input focus states */
.search-input:focus {
    outline: none;
}

.search-input:focus + .search-clear {
    color: #3498db;
}

/* Loading state for search (future enhancement) */
.search-input-wrapper.searching {
    opacity: 0.7;
}

.search-input-wrapper.searching::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Filter Menu Styles */
.filter-menu {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e8ed;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 100;
}

/* Desktop layout */
@media (min-width: 768px) {
    .filter-column {
        position: sticky;
        top: 100px;
        height: fit-content;
        max-height: calc(100vh - 120px);
        align-self: flex-start;
    }
    
    .filter-menu {
        width: 100%;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }
    
    .filter-content {
        display: block !important;
        max-height: none;
    }
    
    .filter-search {
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .filter-options {
        max-height: calc(100vh - 300px);
        overflow-y: auto;
    }
}

/* Mobile layout */
@media (max-width: 767px) {
    .main-content-section {
        padding: 1rem 0;
    }
    
    .content-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-column {
        flex: 1;
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        max-height: none !important;
        align-self: stretch;
    }
    
    .filter-menu {
        max-height: none;
    }
    
    .filter-content {
        display: block;
        max-height: 400px;
        overflow-y: auto;
    }
    
    .filter-column .filter-menu {
        width: 100%;
        max-height: 400px;
    }
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e1e8ed;
}

.filter-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.filter-clear {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-clear:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.filter-clear:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

.filter-search {
    position: relative;
    padding: 1rem;
    border-bottom: 1px solid #e1e8ed;
}

.filter-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
    z-index: 1;
}

.filter-search input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.filter-search input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.filter-search input::placeholder {
    color: #999;
}

.filter-options {
    padding: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.filter-option {
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.filter-option:last-child {
    margin-bottom: 0;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    border: 2px solid transparent;
}

.filter-label:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
}

.filter-radio {
    width: 18px;
    height: 18px;
    accent-color: #3498db;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.filter-text {
    flex: 1;
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.4;
}

.filter-count-badge {
    background: #6c757d;
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-left: auto;
}

.filter-option.selected .filter-label {
    background: rgba(52, 152, 219, 0.12);
    border-color: #3498db;
    box-shadow: 0 2px 4px rgba(52, 152, 219, 0.1);
}

.filter-option.selected .filter-text {
    font-weight: 600;
    color: #2c3e50;
}

.filter-option.selected .filter-count-badge {
    background: #3498db;
}

/* Radio button custom styling */
.filter-radio {
    appearance: none;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.filter-radio:checked {
    border-color: #3498db;
    background: #3498db;
}

.filter-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.filter-radio:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Scrollbar styling for filter options */
.filter-options::-webkit-scrollbar {
    width: 6px;
}

.filter-options::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.filter-options::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 3px;
}

.filter-options::-webkit-scrollbar-thumb:hover {
    background: #ced4da;
}

/* Enhanced visual feedback for selected filters */
.filter-option.selected .filter-label {
    background: #e3f2fd;
    border-left: 3px solid #3498db;
    padding-left: calc(0.5rem - 3px);
}

.filter-option.selected .filter-text {
    font-weight: 600;
    color: #2c3e50;
}

/* Loading state for filter menu */
.filter-menu.loading {
    opacity: 0.7;
    pointer-events: none;
}

.filter-menu.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animation for filter menu appearance */
.filter-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced accessibility for filter menu */
.filter-menu:focus-within {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.filter-checkbox:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.filter-label:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Additional visual enhancements */
.filter-option {
    border-radius: 6px;
    overflow: hidden;
}

.filter-option:hover .filter-label {
    background: #f8f9fa;
}

.filter-option.selected .filter-label {
    background: #e3f2fd;
    border-left-color: #2980b9;
}

/* Improved z-index management for overlapping elements */
.filter-menu {
    z-index: 100;
}

.filter-content {
    z-index: 101;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Schemas Section Styles */
.schemas-section {
    padding: 3rem 0;
    background: #fff;
    min-height: 100vh;
}

.schemas-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.schemas-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.schemas-description {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.schemas-body {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e8ed;
}

/* Schema documentation specific styles */
.schemas-body h1 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.schemas-body h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e1e8ed;
}

.schemas-body h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.schemas-body h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.schemas-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.schemas-body ul, .schemas-body ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.schemas-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.schemas-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    overflow: hidden;
}

.schemas-body th, .schemas-body td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e1e8ed;
}

.schemas-body th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.schemas-body tr:last-child td {
    border-bottom: none;
}

.schemas-body code {
    background: #f1f3f4;
    color: #5f6368;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.schemas-body pre {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.schemas-body pre code {
    background: none;
    padding: 0;
    color: #333;
}

.schemas-body blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    margin: 1rem 0;
    color: #666;
    font-style: italic;
}

.schemas-body a {
    color: #3498db;
    text-decoration: none;
}

.schemas-body a:hover {
    text-decoration: underline;
}

.schemas-body hr {
    border: none;
    border-top: 1px solid #e1e8ed;
    margin: 2rem 0;
}

/* Responsive design for schemas section */
@media (max-width: 768px) {
    .schemas-section {
        padding: 2rem 0;
    }
    
    .schemas-title {
        font-size: 2rem;
    }
    
    .schemas-content {
        padding: 0 15px;
    }
    
    .schemas-body {
        padding: 1.5rem;
    }
    
    .schemas-body h1 {
        font-size: 1.5rem;
    }
    
    .schemas-body h2 {
        font-size: 1.2rem;
    }
    
    .schemas-body table {
        font-size: 0.9rem;
    }
    
    .schemas-body th, .schemas-body td {
        padding: 0.5rem;
    }
}

/* Schema file links styling */
.schemas-body .schema-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.schemas-body .schema-link {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.schemas-body .schema-link:hover {
    background: #2980b9;
    color: white;
    text-decoration: none;
}

/* JSON schema examples styling */
.schemas-body .json-example {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
}

.schemas-body .json-example::before {
    content: 'JSON';
    position: absolute;
    top: -10px;
    left: 10px;
    background: #3498db;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Schema validation messages */
.schemas-body .validation-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    color: #856404;
}

.schemas-body .validation-message.error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.schemas-body .validation-message.success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}