body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

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

header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

h1 {
    margin-top: 0;
    color: #2c3e50;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #3498db;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.transcript-list {
    list-style: none;
    padding: 0;
}

.transcript-list li {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.transcript-list li:hover {
    background-color: #f5f5f5;
}

.transcript-list a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.transcript-list a:hover {
    text-decoration: underline;
}

.date {
    font-size: 0.8em;
    color: #7f8c8d;
    float: right;
}

pre {
    white-space: pre-wrap;
    background: #f8f8f8;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.search-container {
    margin-bottom: 20px;
}

#searchInput {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

footer {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 10px;
    font-size: 0.9em;
    color: #7f8c8d;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
}