/* General Styles */
.important {
  padding: 0;
  max-width: 2561px;
  margin: 0 auto;
}

.info {
  background: #0A55AC;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.section-content {
  width: 100%;
}
.prastavana-row{
  height: 20px;
  
}

/* Two Containers Layout */
.triangular-layout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.left-container {
  width: 43%; /* Fixed 35% width */
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  
  height: 53vh;
  border: 5px solid rgb(2, 34, 117);
  overflow: hidden;
  flex-shrink: 0; /* Prevent shrinking */
}

.right-container {
  width: 55%; /* Fixed 65% width */
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 
  height: 53vh;
  border: 5px solid rgb(2, 34, 117);
  overflow: hidden;
  flex-shrink: 0; /* Prevent shrinking */
}

/* Content inside containers */
.bg-light {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.clearfix {
  padding: 10px;
  
  border-radius: 5px 5px 0 0;
}

.text-white {
  color: white !important;
}

.important_mahiti {
  flex-grow: 1;
  overflow: hidden;
   overflow-x: auto;
  overflow-y: auto;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  height: calc(100% - 50px); /* Adjust based on header height */
}

/* Image in right container */
.panchayat {
  height: 100%;
  width: 100%;
}

.panchayat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

/* List items styling */
.important_mahiti ul {
  padding-left: 0;
  margin: 0;
}

.important_mahiti ul li {
  color: #000;
  text-decoration: none;
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.important_mahiti ul li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../images/pdf.png');
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.important_mahiti a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 5px 0;
}

.important_mahiti a:hover {
  color: #0A55AC;
}

/* Responsive Design */
@media (max-width: 768px) {
  .triangular-layout {
    flex-direction: column;
  }
  
  .left-container,
  .right-container {
    width: 100%;
    height: auto;
    min-height: 300px;
  }
  
  .important_mahiti {
    height: auto;
    max-height: 300px;
  }
  
  .panchayat img {
    height: 300px;
  }
}

@media (max-width: 320px) {
  .left-container,
  .right-container {
    padding: 10px;
  }
  
  .important_mahiti {
    padding: 5px;
  }
  
  .panchayat img {
    height: 250px;
  }
}