.cl-4637-container {
    width: 100%;
}

/* Search Bar Styles */
.cl-4637-search-wrapper {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 5px 5px 5px 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.cl-4637-search-wrapper:focus-within {
    border-color: #61CE70; /* Accent color or Primary */
    box-shadow: 0 4px 15px rgba(97, 206, 112, 0.15);
}

.cl-4637-search-icon {
    color: #7A7A7A;
    font-size: 18px;
    margin-right: 10px;
}

.cl-4637-search-input {
    flex-grow: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
}

.cl-4637-search-input::placeholder {
    color: #a0a0a0;
}

.cl-4637-search-btn {
    background-color: #61CE70; /* Accent color */
    color: white;
    border: none;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cl-4637-search-btn:hover {
    background-color: #4CAF50; /* Slightly darker */
}


/* Grid Styles */
.cl-4637-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.cl-4637-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.cl-4637-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: #d1d1d1;
}

.cl-4637-card-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cl-4637-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cl-4637-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cl-4637-placeholder-icon {
    color: #6EC1E4;
    font-size: 20px;
}

.cl-4637-info {
    display: flex;
    flex-direction: column;
}

.cl-4637-prefix {
    font-size: 12px;
    color: #7A7A7A;
    margin-bottom: 2px;
}

.cl-4637-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #54595F;
}

.cl-4637-arrow {
    color: #7A7A7A;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cl-4637-card:hover .cl-4637-arrow {
    transform: translateX(4px);
    color: #333;
}

.cl-4637-no-results {
    text-align: center;
    padding: 30px;
    color: #7A7A7A;
    font-size: 16px;
}