body {
    background-color: #f8f9fa;
    font-family: 'Nokora', Arial, sans-serif;
}

.navbar {
    margin-bottom: 50px;
    font-weight: bold;
}

.navbar-nav .nav-link {
    padding: 0.2rem 1rem;
    color: #f8f9fa;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.navbar-nav .nav-link.d-inline {
    padding: 0.3rem 0.6rem;
    margin-right: 2px;
    font-size: 1rem;
}

.container {
    margin-top: 50px;
    margin-bottom: 80px;
}

.about-section,
.archive-section {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.archive-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.result-item {
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.result-item h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.result-item p {
    margin: 5px 0;
    cursor: pointer;
}

.result-item .full-text {
    display: none;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #343a40;
    color: white;
    text-align: center;
    line-height: 60px;
}

footer a {
    color: #f8f9fa;
    text-decoration: none;
}

footer a:hover {
    color: #007bff;
    text-decoration: underline;
}

.search-box {
    display: flex;
    justify-content: center;
    align-items: 20px;
    margin-bottom: 0 10px;
}

.search-box form {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    justify-content: center;
}

.search-box input[type="text"] {
    flex: 1 1 70%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.search-box button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: #0056b3;
}
