/* body {
	font-family: "sans-serif";
  } */
  /* body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  } */
  
  .container .mt-4 {
	margin-top: 4rem;
  }
  
  .container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
  }
  
  .card {
	margin-top: 80px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.979);
	margin-bottom: 2rem;
	margin-top: 2rem;
  }
  
  .card-header {
	background-color: #F8F9FA;
	border-bottom: none;
	padding: 5rem;
  }
  
  .card-header h1 {
	font-size: 1.5rem;
	text-align: center;
	color: rgba(182, 228, 255, 0.979);
  }
  
  .card-body {
	background-color: #F8F9FA;
	border-radius: 10px;
	padding: 1rem;
  }
  
  .search-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	border-radius: 10px;
	padding: 1rem;
  }
  
  .search-container form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
  }
  
  .search-container form p {
	margin-bottom: 0.5rem;
	flex: 1;
  }
  
  .search-select {
	position: relative;
	display: inline-block;
	border-radius: 5px;
	overflow: hidden;
  }
  
  .search-select select {
	padding: 0.5rem 1rem;
	border: none;
	background-color: #007bff;
	color: white;
	cursor: pointer;
  }
  
  .search-select:hover select {
	background-color: #0056b3;
  }
  
  .search-button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
  }
  
  .table-container {
	overflow-x: auto;
	overflow-y: hidden;
	position: relative;
	background: #f8f9fa;
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  
  td {
	min-width: 5px; /* Example value, adjust as needed */
  }
  
  #channels-table thead th {
	color: #616a75;
	background-color: #f9fafb;
	z-index: 1;
	font-size: 0.75rem;
	text-align: center;
	width: 100%;
  }
  
  
  .table tbody tr:hover {
	background-color: #f1f2f4;
  }
  
  .table-responsive {
	background-color: #f8f9fa;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 1rem;
  }
  
  .table-container .freeze {
	left: 0;
	right: 0;
	background-color: white;
	z-index: 3;
  }
  
  .expanding-cell {
	max-width: 50px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
  }
  
  .expanding-cell.expanded {
	max-width: none;
	white-space: normal;
	overflow: visible;
  }
  
  .expanding-cell.expanded:hover {
	background-color: #f1f2f4;
  }
  
  .search-container-spacing {
	margin-top: 2rem;
  }
  
  .popup {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	/* max-width: 800px; */
	margin: auto;
	/* padding: 20px; */
	background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	z-index: 999;
  }
  
  .popup iframe {
	width: 100%;
	height: 100%;
	border: none;
  }
  
  .popup button {
	position: fixed;
	top: 10px;
	right: 10px;
	padding: 5px 10px;
	background-color: #ccc;
	border: none;
	cursor: pointer;
	z-index: 1000;
  }
  
  /* .popup button {
	position: absolute;
	top: auto;
	bottom: 10px;
	right: 10px;
	padding: 5px 10px;
	background-color: #ccc;
	border: none;
	cursor: pointer;
	z-index: 1000;
  }  */
  
  
  .loader {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px;
	border: 5px solid #f3f3f3;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }
  
  .column-align {
	vertical-align: middle;
	text-align: center;
  }
  
  .alert {
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 3px;
  }
  
  .alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3c763d;
  }
  
  .alert-error {
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442;
  }
  
  .tab-button {
	background-color: #f1f1f1;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 10px 15px;
	transition: 0.3s;
  }
  
  .tab-button:hover {
	background-color: #ddd;
  }
  
  .tab-button.active {
	background-color: #ccc;
  }
  
  .content {
	display: none;
  }
  
  .active-content {
	display: block;
  }
  
  
  /* body {
	  font-family: "sans-serif";
  } */
  /* body {
	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  } */
  
  .edit-container {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  min-height: 80vh;
  }
  
  .edit-form {
	  width: 100%;
	  max-width: 500px;
	  background-color: #f8f9fa;
	  border-radius: 10px;
	  padding: 2rem;
	  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .submit-btn {
	  display: flex;
	  justify-content: center;
	  align-items: center;
  }
  
  #wrapper {
	background: hsla(0, 0%, 80%, 0);
	overflow: hidden;
	transition: height 200ms;
  }
  
  @keyframes spinner {
	to {transform: rotate(360deg);}
  }
  #loadingAnimation:before {
	content: '';
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	margin-left: -10px;
	border-radius: 50%;
	border: 2px solid #ccc;
	border-top-color: #333;
	animation: spinner .6s linear infinite;
  }
  
	 