* {
    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: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header {
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

h1 {
    color: #222;
    font-size: 2em;
}

main {
    margin-bottom: 30px;
}

.document-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem;
}

.document-item {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.document-name {
    display: block;
    font-weight: 500;
}

.document-filename {
    display: inline-block;
    margin-top: 0.2rem;
    margin-right: 0.5rem;
    color: #666;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.9em;
}

.document-download {
    display: inline-block;
}

.document-item .document-download {
    color: #0066cc;
    text-decoration: underline;
}

.document-download:hover {
    text-decoration-thickness: 2px;
}

.document-download:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

footer {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5em;
    }
}
