
.head{
  background-color: #A57B41;
}
.tablehead{
  background-color: #A57B41;

}

.table-sm td, .table-sm th {
  padding: 0.1rem;
}

.avatar {
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  height: 70px;
  width: 70px;
  vertical-align: middle;
  object-fit: cover;
}
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    width: 100px;
    height: 100px;
    margin: -76px 0 0 -76px;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #A57B41;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  #loader-img {
    width: 100%;
    height: auto;
    margin: 0px ;
    border-radius: 50%;          /* Make it circular */
    object-fit: cover;           /* Crop excess while filling */
    animation: spinlogo 2s linear infinite;
    -webkit-animation: spinlogo 2s linear infinite;
  }
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  /* Safari */
   @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes spinlogo {
    0% {
        transform: rotate(360deg);
    }
  
    100% {
        transform: rotate(0deg);
    }
  }
  
  @-webkit-keyframes spinlogo {
  0% {
    -webkit-transform: rotate(360deg);
  }
  
  100% {
    -webkit-transform: rotate(0deg);
  }
  }
  



.btn {
  color: #A57B41;
  font-size: 0.6rem !important ;
  text-transform: uppercase;
  font-weight: bold;
  background: none;
  border: 1px solid #A57B41;
  
  
  /* line-height: 1rem; */
  border-radius: 0.4rem;
  margin-bottom: 0.2rem;
  /* margin-left : 0.2rem; */
}

.btn:hover, .btn:focus {
    color: #fff;
    background: #6B4028;
    box-shadow: none;
}






.pos-header{
background-color:#A57B41; color: #000000"

};

  /* This is user ımage style in Group List */

.avatar {
  border-radius: 50%;
  border: 1px solid rgb(255, 255, 255);
  height: 70px;
  width: 70px;
  vertical-align: middle;
  object-fit: cover;
}



.custom-badge {
  display: inline-flex;
  align-items: center;
  background-color: #804208;
  color: #fff;
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 0.4rem;
  font-weight: 500;
  margin: 2px;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
}

.custom-badge .remove-icon {
  margin-left: 8px;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  transition: color 0.2s;
}

.custom-badge .remove-icon:hover {
  color: #ffc107;
}