 .search-select {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23123372' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
     background-repeat: no-repeat;
     background-position: right 8px center;
     background-size: 16px;
 }

 .search-select:focus {
     outline: none;
     box-shadow: 0 0 0 2px rgba(33, 143, 254, 0.2);
 }

 .article-item {
     transition: all 0.3s ease;
     border-left: 4px solid transparent;
 }

 .article-item:hover {
     background-color: #218ffe !important;
     color: white;
     border-left-color: #123271;
     transform: translateY(-2px);
 }

 .article-item:hover * {
     color: white !important;
 }

 .article-date {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     min-width: 80px;
 }

 .article-day {
     font-size: 2rem;
     font-weight: bold;
     color: #123271;
 }

 .article-year-month {
     color: #666;
     font-size: 0.9rem;
 }

 .article-content {
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .article-image {
     height: 120px;
     width: 120px;
     object-fit: cover;
     border-radius: 8px;
 }

 .pagination {
     display: flex;
     justify-content: center;
     margin-top: 2rem;
 }

 .pagination a {
     color: #123271;
     padding: 8px 16px;
     text-decoration: none;
     border: 1px solid #ddd;
     margin: 0 4px;
     border-radius: 4px;
     transition: all 0.3s ease;
 }

 .pagination a.active {
     background-color: #123271;
     color: white;
     border: 1px solid #123271;
 }

 .pagination a:hover:not(.active):not(.disabled) {
     background-color: #218ffe;
     color: white;
     border-color: #218ffe;
 }

 .pagination a.disabled {
     color: #ccc;
     cursor: not-allowed;
     border-color: #eee;
 }

 @media (max-width: 768px) {
     .article-container {
         flex-direction: column;
     }

     .article-date {
         flex-direction: row;
         justify-content: flex-start;
         margin-bottom: 1rem;
     }

     .article-day {
         margin-right: 10px;
     }

     .article-image {
         margin-top: 1rem;
         width: 100%;
         height: 200px;
     }

     .search-filters {
         flex-direction: column;
     }

     .search-filter {
         width: 100%;
         margin-bottom: 1rem;
     }
 }