/**
 * u0e2au0e44u0e15u0e25u0e4cu0e2au0e33u0e2bu0e23u0e31u0e1au0e2bu0e19u0e49u0e32u0e04u0e49u0e19u0e2bu0e32u0e2au0e34u0e19u0e04u0e49u0e32
 */

/* u0e01u0e25u0e48u0e2du0e07u0e04u0e49u0e19u0e2bu0e32 */
.search-container {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-container:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.search-input {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
}

.search-button {
    background-color: #ec4899;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: #db2777;
    transform: translateY(-1px);
}

/* u0e2bu0e31u0e27u0e02u0e49u0e2du0e41u0e25u0e30u0e02u0e49u0e2du0e21u0e39u0e25u0e1cu0e25u0e01u0e32u0e23u0e04u0e49u0e19u0e2bu0e32 */
.search-header {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.search-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    border-radius: 2px;
}

.search-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.search-count {
    color: #6b7280;
    font-size: 1.125rem;
}

.search-count span {
    color: #ec4899;
    font-weight: 600;
}

/* u0e1cu0e25u0e25u0e31u0e1eu0e18u0e4cu0e44u0e21u0e48u0e1eu0e1a */
.no-results {
    text-align: center;
    padding: 3rem 0;
    color: #6b7280;
}

.no-results-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.no-results-message {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Animation */
.search-result-item {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* u0e01u0e32u0e23u0e41u0e1au0e48u0e07u0e2bu0e19u0e49u0e32 */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.25rem;
    padding: 0 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s;
}

.pagination-link:hover {
    background-color: #f3f4f6;
}

.pagination-link.active {
    background-color: #ec4899;
    color: white;
}

.pagination-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* u0e01u0e32u0e23u0e41u0e2au0e14u0e07u0e1cu0e25u0e01u0e32u0e23u0e04u0e49u0e19u0e2bu0e32u0e43u0e19u0e2du0e38u0e1bu0e01u0e23u0e13u0e4cu0e21u0e37u0e2du0e16u0e37u0e2d */
@media (max-width: 768px) {
    .search-header {
        text-align: center;
    }
    
    .search-header::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .search-container {
        padding: 0.75rem;
    }
}
