body {
    background-image: url('img/bg.jpg'); /* ইমেজের পাথ নিশ্চিত করুন */
    background-size: cover; /* পুরো স্ক্রিন জুড়ে ব্যাকগ্রাউন্ড সেট হবে */
    background-position: center; /* ব্যাকগ্রাউন্ড ইমেজ ঠিকমতো সেট হবে */
    background-repeat: no-repeat; /* ইমেজ রিপিট হবে না */
}

.accordion{
  border: none;
  border-radius:6px;
  color: #595959;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  width: 100%;
  height: 40px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  background-color: white; 
  color: black; 
  border: 2px solid #4CAF50;}

.active, .accordion:hover {
  background-color: #4CAF50; /* Green */
  color: white;
}

.panel {
  padding: 0 18px;
  /*background-color: white;*/
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.box{
  margin-bottom:10px;
  text-align:center;
  
}

.table {
  width: 100%;
  border-collapse: collapse !important;
  color: #111412;
}
.table td,
.table th {
  padding: 5px;
  border: 2px solid #111412 !important;
  color:  #0d0e0f;
}

.table td, th, a{
  color: #101010;;
  text-decoration: none;
}
