.imran-category-container {
    max-width: 450px;
    margin: 20px auto;
    font-family: sans-serif;
}

/* Toggle Button */
.imran-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: 30px;
    border: 2px solid #4193f7;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Scrollable List */
.imran-category-list {
    list-style: none;
    padding: 10px;
    margin: 0;
    max-height: 550px; /* Adjust height here */
    overflow-y: auto;  /* Vertical scroll */
    background: #fdfdfd;
    border-radius: 15px;
    border: 1px solid #eee;
}

/* Custom Scrollbar Styling (Right side visible) */
.imran-category-list::-webkit-scrollbar {
    width: 8px;
}
.imran-category-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.imran-category-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.imran-category-list::-webkit-scrollbar-thumb:hover {
    background: #e3261c;
}

/* Individual Card */
.imran-category-card {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.imran-category-card a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.imran-icon-box {
    width: 35px;
    height: 35px;
    background: #f0f7ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.imran-category-name {
    flex-grow: 1;
    font-weight: 500;
  text-align: left;
  font-size: 14px;
}

.imran-count {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 12px;
}