.container {
    width: 80%;
    margin: 20px auto;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-item {
    display: flex;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-item img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 6px;
}

.search-info {
    flex: 1;
}

.search-info h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.search-info p {
    font-size: 14px;
    color: #666;
}
.summary-title {
    font-size: 16px;
    font-weight: bold;
    color: #40bf80;
    margin: 5px 0;
}
.read-more {
    color: #1C87C9;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 2px;
    background: #1C87C9;
    color: white;
    border-radius: 4px;
    text-decoration: none;
}

.pagination a.active {
    background: #40bf80;
}