.patient-appointment-dt-lists{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}
.appointment-item{
    width: 48%;
    padding: 14px;
    box-shadow: 0 0.5rem 1.5rem rgba(140, 152, 164, 0.15);
    margin-bottom: 20px;
}
.appointment-item p{
    margin-bottom: 0px;
}

.doctor-appointment-pt-lists{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
/* google meet button css */
 .elementor-button {
     background-color:#2d4f93;
 }
/* End Of google meet button css */

/*Dashboard user*/
.dashboard-container {
  display: flex;
 
  font-family: Arial, sans-serif;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  padding:0px;
}

.sidebar {
  width: 220px;
  background-color:#F0F0F0;
  color: black;
  padding: 20px;
  display: flex;
  flex-direction: column;
   font-weight: 500;
 
  text-decoration: none;
  border: 2px solid bold;
  transition: 0.3s ease;
}

.sidebar .tab-btn {
  background: none;
  color:black;
  border: none;
  text-align: left;
  padding: 12px 15px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.sidebar .tab-btn.active,
.sidebar .tab-btn:hover {
   color: #2d4f93;
  border-bottom: 2px solid #2d4f93;
}

.content-area {
 width: 250px;
  background-color: white;
  padding: 30px;
  border: 2px solid #ddd;
  flex: 1;
  border-radius:0px;
  
  /*background-color: #f7fafc;*/
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .dashboard-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
  }

  .sidebar .tab-btn {
    flex: 1;
    text-align: center;
    font-size: 14px;
  }
}