
.time-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.time-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Segoe UI", sans-serif;
}

.time-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.time-card.selected {
  border: 3px solid purple;
}

.time-card.booked {
  background: #f1f1f1;
  color: #aaa;
  cursor: not-allowed;
  box-shadow: none;
}

.time-label {
  font-size: 18px;
  font-weight: 500;
}
.label_desc{
font-size: 20px;text-align: center;
}
.notify_text{
 margin: 0 5px;
}

hr {
  border: none;
  height: 2px;
  background: gray; /* بنفسجي متدرج */
  border-radius: 2px;
  margin: 20px 0; /* مسافة فوق وتحت */
  animation: fadeIn 0.6s ease-in-out;
}


.pagin{
	padding: 5px 11px;
	border-radius: 4px;
	color: white;
}

.text-black{
	color:black;
}

.pagin-current{
	background-color: #30b7dd;
}
.pagin-other{
	background-color: #c9c9c9;
}
.totalRecords{
	text-align: center;
    margin: 2px 0;
}

.sidebar-li{
	list-style: none;
    padding: 0 0.5rem;
    background-color: white;
    margin: 5px 0px;
    border-radius: 5px;
}
.print_btn{
	padding: 0.5rem 0.7rem;
}
.groups_permissions{
	display: flex;
	justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
}
.myAlert{
	color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.bg-card{
	background-color: #f5f5f5;
}
.icons_card{
	color:white;margin-top: 0.9rem;
}