body{
    background-color: #e8f2fc;
    }
    /* Reset some default styles for header */
    header {
        display: block;
        unicode-bidi: isolate;
        padding: 10px; /* Example padding */
        margin-left: 15%;
    }
    
    /* Flexbox layout for header content */
    .header-content {
        display: flex;
        justify-content: space-between; /* Items on left and right */
        align-items: center; /* Center vertically */
    }
    
    .header-text {
        text-align: center; /* Center text in the middle */
    }
    
    .user-image {
        margin-left: auto; /* Push image to the right */
    }
    
    .user-image img {
        width: 50px; /* Adjust image size as needed */
        height: auto; /* Maintain aspect ratio */
        border-radius: 50%; /* Make it circular */
    }
    
    /* css from index.html page */
    .card-chart {
        padding: 30px 25px;
        background-color: white;
    }
    
    body.dark .card-chart {
      background-color: #2C394B;
    }
    
    
    .list-group-item {
            transition: background-color 0.3s, transform 0.3s;
            background-color: #ffffff;
            border: 1px solid #e9ecef;
            margin-bottom: 10px;
            border-radius: 5px;
        }
    .list-group-item:hover {
        background-color: #e2e6ea;
        transform: translateY(-5px);
    }
    .article-t {
        font-size: 1.25rem;
        font-weight: 500;
        color: #343a40;
    }
    .article-d {
        font-size: 1rem;
        color: #6c757d;
        margin-bottom: 0.5rem;
    }
    .article-p {
        font-size: 0.875rem;
        color: #adb5bd;
    }
    .no-articles {
        color: #dc3545;
        font-weight: bold;
    }
    
    body.dark .article-d{
      color: black;
    }
    
    body.dark h5{
      color: black !important;
    }
    
    body.dark .list-group-item {
      color: black;
    }
    
    .bk-layer {
    width: 473px !important;
    height: 350px;
    }
    
    .bk-layer .bk-events {
      width: 300px !important;
      height: 350px;
    }
    .card-social, .card {
      height: 100%;
      margin-bottom: 16px;
    }
    .equipment-list {
      flex-direction: column;
      gap: 16px;
    }
    .calender {
      padding: 60px 19px !important;
    }
    .calender h2 {
      margin: 22px 0 32px 0;
    }
    .counts {
      padding: 62px 19px !important;
    }
    
    @media (max-width:767px) {
      .counts {
        padding: 36px 19px !important;
      }
      .calender {
        padding: 30px 18px !important;
      }
    }
    
    
    /* css for header panel */
    
    .theme-change-switch-container {
      display: flex !important;
      label {
        display: flex;
        align-items: center;
        margin-bottom: 0;
        i {
          display: inline-block;
        }
      }
    }
    
    .theme-change-switch {
      font-size: 25px;
    }
    
    .user-dropdown-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .user-dropdown img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    
    /* css for index page */
    
    .patient-image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .patient-image {
        width: 300px;
        height: 300px;
        object-fit: cover;
        border: 1px solid #e9ecef;
    }
    
    .index-page-button-container {
        display: flex;
        justify-content: center;
        align-items: center;
        a {
            margin-left: 10px;
            margin-right: 10px;
        }
    }
    
    
    /* css for prescription page */
    
    .inner-card:hover {
        transition: background-color 0.8s;
        background-color: #e2e6ea;
    }

    .black-title {
      font-weight: bold;
      margin-bottom: 0;
    }

    .patient-profile{
    color: black;
    }