   .category-search-box {
    padding: 0 15px 10px 15px; /* Adjust padding as needed */
}

#categoryInput {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background: #f9f9f9;
}

#categoryInput:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.2);
}






/* Search Box Container */
.category-search-box {
    padding: 0 15px 15px 15px; /* Thoda space upar neeche */
}

/* Input Field Design */
#authorInput, #categoryInput {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee; /* Halka grey border */
    border-radius: 12px;    /* Gol kinare */
    font-size: 14px;
    background: #f8f9fa;    /* Halka background */
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

/* Jab user type karega (Focus State) */
#authorInput:focus, #categoryInput:focus {
    border-color: #667eea;  /* Purple Theme Color */
    background: #fff;       /* White Background */
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

/* Placeholder text color */
::placeholder {
    color: #999;
}