.dropdown.dropdown-scroll .dropdown-list{
    max-height: 233px;
    overflow-y: auto;
	overflow-x: auto;
    list-style-type: none;
    padding-left: 0px;
    margin-bottom: 0px;
	max-width:400px;
}
.dropdown-menu {
	width:100%;
}

.dropdown-menu li>a{
	pointer:pointer;
}
.dropdown-list  li{
    font-size: 14px;
   padding-top:8px;
	padding-bottom:8px;

	
	width:100%;
}

.dropdown-list  li > a{
    color: black;
	width:98%;
	padding-left:10px;
	
}
.dropdown-list a:hover{
   color: black;
}

.dropdown-list li:hover{
    background-color: #6c8ff7; width:100%;
}




div.searchable {
    width: 300px;
    float: left;
    margin: 0 15px;
}

.searchable input {
    width: 100%;
    height: 50px;
    font-size: 18px;
    padding: 10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    display: block;
    font-weight: 400;
    line-height: 1.6;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center/8px 10px;
}

.searchable ul {
    display: none;
    list-style-type: none;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    border: 1px solid #add8e6;
    border-top: none;
    max-height: 180px;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0;
}

.searchable ul li {
    padding: 7px 9px;
    border-bottom: 1px solid #e1e1e1;
    cursor: pointer;
    color: #6e6e6e;
}

.searchable ul li.selected {
    background-color: #e8e8e8;
    color: #333;
}
.link-under_dropdown{ cursor:pointer; color:blue;}

.storelogo {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    color: #444;
    text-transform: uppercase;
    text-align:center;
    padding-top:20px;
    
}

/*sale order page*/
/* Professional alignment rules for order tables */
#productTable th,
#productTable td {
    vertical-align: middle;
}

    /* Text-based columns - LEFT */
    #productTable th:first-child,
    #productTable td:first-child,
    #productTable th:nth-child(2),
    #productTable td:nth-child(2) {
        text-align: left;
    }

    /* Numeric columns - RIGHT (for readonly/display fields) */
    #productTable th:nth-child(3), /* Stock Qty */
    #productTable td:nth-child(3),
    #productTable th:nth-child(4), /* Company Rate */
    #productTable td:nth-child(4),
    #productTable th:nth-child(5), /* Purchase Rate */
    #productTable td:nth-child(5),
    #productTable th:nth-child(9), /* Amount */
    #productTable td:nth-child(9) {
        text-align: right;
    }

    /* Editable number fields - LEFT (to avoid spinner overlap) */
    #productTable th:nth-child(6), /* Quantity */
    #productTable td:nth-child(6),
    #productTable th:nth-child(7), /* Sale Rate */
    #productTable td:nth-child(7),
    #productTable th:nth-child(8), /* % Discount */
    #productTable td:nth-child(8) {
        text-align: left;
    }

    /* Action buttons - CENTER */
    #productTable th:last-child,
    #productTable td:last-child {
        text-align: center;
    }

/* Input fields should inherit their cell alignment */
#productTable input.form-control,
#productTable select.form-control {
    width: 100%;
    text-align: inherit; /* Inherits from parent td */
}

/* Hide spinners for ALL number inputs (clean professional look) */
#productTable input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}

    #productTable input[type="number"]::-webkit-inner-spin-button,
    #productTable input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }