.view_order_details{
    cursor:pointer;
}
.btn-close{
    cursor:pointer;
}
#dropshipping-order-modal .modal-header{
    padding:.5rem 1rem;
}
#dropshipping-order-modal p{
    margin-bottom: 0;
}
.dropshipping_order_info .order_info{
    margin-bottom:10px;
}
/*Order Items Table*/
.order-items-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-top: 1em;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.order-items-table thead {
  background-color: #f5f5f5;
  text-transform: uppercase;
  font-weight: bold;
}

.order-items-table th,
.order-items-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.order-items-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.order-items-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.order-items-table tbody tr:hover {
  background-color: #f0f0f0;
}