.datePicker {
	width: 100%;
  }

  .form-control-danger,
  .form-control-danger:focus {
	border: 1px solid #ea5941;
	color: #ea5941;
  }
  
  .form-select-danger,
  .form-select-danger:focus {
	border: 1px solid #ea5941;
	color: #ea5941;
  }
  
  .validationerror {
	color: #ea5941;
  }
  
.locationBox{
  position: relative;
}
.scrollable-list {
  max-height: 200px; /* Set a fixed height */
  overflow-y: auto;  /* Enable vertical scrolling */
  border: 1px solid #ccc; /* Optional: add a border for better visibility */
  padding: 0;
  margin: 0;
  list-style: none; /* Remove default list styling */
}

/* Custom scrollbar styles */
.scrollable-list::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

.scrollable-list::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background of the scrollbar track */
}

.scrollable-list::-webkit-scrollbar-thumb {
  background-color: #888; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners of the scrollbar thumb */
  border: 3px solid #f1f1f1; /* Space around the scrollbar thumb */
}

.scrollable-list::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Color of the scrollbar thumb on hover */
}

.scrollable-list li {
  padding: 8px;
  cursor: pointer;
}
.scrollable-list li:hover {
  background-color: #888; /* Optional: add hover effect */
}
.item-name {
  font-weight: bold;
  margin-bottom: 4px; /* Space between name and details */
}

.item-details {
  display: flex;
  justify-content: space-between;
}

.item-code-date {
  flex: 1;
}

.item-designation {
  flex: 1;
  text-align: right;
}
.locationListVideo{
  width: 100%;
  position: absolute;
  z-index: 1000;
  background-color: #FFF;
  color: #000;
  list-style: none;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 5px;
}

.locationListVideoItem{
  padding: 15px;
  font-size: 12px;
}
.locationListVideoItem:hover{
  background-color: #233D7F;
  color: #fff;
}
.popup-box {
	position: fixed;
	background: #00000050;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 10000;
  }
   
  .userLogin {
	position: relative;
	width: 70%;
	margin: 0 auto;
	height: auto;	
	max-width: 473px;
	margin-top: calc(100vh - 85vh - 20px);
	background: #fff;
	border-radius: 4px;
	padding: 20px;
	border: 1px solid #999;
	overflow: auto;
  }
  .icon-inside {
    position: absolute;
    right: 15px;
    top: calc(50% - 11px);
    pointer-events: none;
    font-size: 18px;
    font-size: 1.125rem;
    color: #c4c3c3;
    z-index: 3;
  }
  .icon-leftinside {
    position: absolute;
    left: 15px;
    top: calc(50% - 11px);
    pointer-events: none;
    font-size: 18px;
    font-size: 1.125rem;
    color: #c4c3c3;
    z-index: 3;
  }
  .searchTextbox {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 30px;
  }
  .small-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #031b34;
    padding: 10px;
    font-size: 14px;
    color: #fff;
    border-bottom: 1px solid #ddd;
}

.left-content {
    flex: 1;
    text-align: left;
}

.right-content {
    flex: 1;
    text-align: right;
}
.header-socials {
  position: relative;
  display: block;  
}
.header-socials ul {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.header-socials ul li {
  list-style: none;
  display: inline-block;
  position: relative;
  margin-right: 10px;
  background-color: #990011;
}
.header-socials ul li a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.1);
  font-size: 15px !important;
  transition: all ease 0.4s;
}
.header-socials ul li a:hover {
  background: var(--bs-primary);
  color: #ffffff;
}
.main-color{
  background-color: #990011;
}