body {
    font-family:"Noto Sans Thai" Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
.headerbar {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
}
.search-bar {
    margin: 20px;
    text-align: center;
}
.document-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.document-card {
    width: 90%;
    max-width: 600px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: start;
}
.document-card p{
    text-align: left;
}
.document-card:hover {
    transform: translateY(-5px);
    background-color: #e3e1d9;
}
.document-card h2 a {
    text-decoration: none;
    color: #2c3e50;
}
.document-card h2{
        text-align: left !important;
}

.document-card h2 a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .document-card {
        width: 100%;
    }
}