.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  
  .carousel-indicators li {
    cursor: pointer;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    opacity: 0.5;
    border-radius: 50%;
  }
  
  .carousel-indicators li.active {
    background-color: #fff;
    opacity: 1;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  
  .carousel-control-prev {
    left: 0;
  }
  
  .carousel-control-next {
    right: 0;
  }

  /* Custom CSS for the carousel */
#carouselExampleSlidesOnly {
    height: 600px; /* Set the desired height for your carousel */
  }
  
  .carousel-inner {
    width: 100%; /* Make the carousel take up the full width of its container */
  }
  
  .carousel-item img {
    object-fit: cover; /* Ensure images cover the full width while maintaining aspect ratio */
    height: 100%; /* Stretch the image to cover the full height of the carousel */
  }
  /* navigation css begins here */
  .navbar {
    padding: 0.5rem;
  }
  
  .navbar-brand {
    margin-right: 1rem;
  }
  
  .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
  }
  
  .btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
  }
  .navbar {
    border-bottom: 3px solid black; /* Adjust the thickness as needed */
}
   /* navigation css begins here */
    /* login css */

    body {
        background-color: #fff;
      }
      
      .card {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
      }
      
      .card-header {
        background-color: #007bff;
        color: #fff;
      }
      
      .card-body {
       
      }
      
      .btn-primary {
        background-color: #007bff;
        border-color: #007bff;
      }
      
      .btn-primary:hover {
        background-color: #0069d9;
        border-color: #0062cc;
      }
      /* CSS for styling the logo image */
.logo-image {
    max-width: 200px; /* Set the maximum width for the logo */
    display: block;   /* Make the image a block element for better alignment */
    margin: 0 auto;   /* Center the image horizontally within the card body */
    margin-bottom: 30px;
  }
     /* end of login css */
     .rightxtt p {
        margin: 5px 0; /* Adjust the top and bottom margins */
    }

   /* logout css */
   .dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}
/* chapter card begins here */
.card.chapter {
  width: 100px; /* Set the desired width */
  height: 100px; /* Set the same value as width to create a square */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  border: 1px solid #ccc; /* Optional: Add a border for styling */
}
.card.readarea {
  margin-top: 20px;
  width: 400px; /* Set the desired width */
   /* Set the same value as width to create a square */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  border: 1px solid #ccc; /* Optional: Add a border for styling */
}

.card-body {
  text-align: center; /* Optional: Center the text within the card */
}

.card-title {
  margin: 0; /* Optional: Remove default margin for better appearance */
}


