* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    font-size: 14px;
}

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

.header {
    padding: 15px 0;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.header h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.breadcrumb {
    padding: 10px 0;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #555;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.section {
    margin-bottom: 15px;
}

.section h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 500;
}

.file-list {
    list-style: none;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 8px 5px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.file-item:hover {
    background-color: #f8f9fa;
}

.file-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.file-info {
    flex-grow: 1;
}

.file-name {
    font-weight: 500;
    color: #2c3e50;
}

.file-details {
    font-size: 0.8rem;
    color: #7f8c8d;
}

.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.empty-state {
    text-align: center;
    padding: 30px;
    color: #6c757d;
}

.empty-state .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.5;
} 

.search-container {
    background: #f8f9fa;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}
.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
}
.search-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}
.search-button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.search-button:hover {
    background: #0056b3;
}
.search-results {
    margin-top: 20px;
}
.search-result-item {
    background: white;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}
.search-result-item h3 {
    margin: 0 0 10px 0;
    color: #333;
}
.search-result-item p {
    margin: 5px 0;
    color: #666;
}
.search-result-link {
    color: #007bff;
    text-decoration: none;
}
.search-result-link:hover {
    text-decoration: underline;
}