* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  /*****************************************************************heading**************************************************************************/
  .heading{
    display: inline-flex;
    width: 100%;
    padding-left: 20px;
  }
  .heading .left{
    padding: 10px;
    padding-left: 20px;
    display: inline-flex;
  }
  .emblem{
    width: 60px;
 
  }
  .heading .headingname h1{
    font-family: Mongolian Baiti;
    color: #c00000;
    font-size: 40px;
    letter-spacing: -2px;
    padding-top: 10px;


  }
  .heading .headingname p{
    font-family: Mongolian Baiti;
    font-size: 20px;
    color: black;
    padding-top: 0px;
    line-height: 5px;
 
  }
  .heading .left{
    width: 84%;
  }
  .heading .right{
    width: 16%;
    display: inline-flex;
    text-align: right;
  }



  /***************************************************************** Navigation Bar Styling *********************************************************/
  nav {
    background-color: #D2412D; /* Dark background color */
    padding: 10px 40px; /* Spacing inside the navigation bar */
  }

  nav ul {
    list-style-type: none; /* Remove default list styling */
    text-align: left; /* Center-aligning the list */
  }

  nav ul li {
    display: inline-block; /* Displaying list items horizontally */
    margin: 0 0px; /* Spacing between list items */
    position: relative; /* Position relative for submenu */
  }

  nav ul li a {
    text-decoration: none; /* Remove underline from links */
    color: #fff; /* Text color */
    font-size: 16px; /* Font size */
    padding: 10px 40px; /* Spacing inside each link */
    border-radius: 0px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for background color */
  }

  nav ul li a:hover {
    background-color: #c00000; /* Darker background color on hover */
  }

  /* Submenu Styling */
  nav ul li ul {
    display: none; /* Hide submenu by default */
    position: absolute; /* Position absolute for submenu */
    top: 150%; /* Position below the parent menu */
    left: 0; /* Align with parent menu */
    background-color: #D2412D; /* Submenu background color */
    border-radius: 0px; /* Rounded corners */
    padding: 0px 0; /* Spacing inside submenu */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Drop shadow effect */
    width: 400px;
    text-align: left;

  }

  nav ul li:hover ul {
    display: block; /* Display submenu on parent hover */
    z-index: 9999;
  }

  nav ul li ul li {
    display: block; /* Display submenu items vertically */
    margin: 0px 0; /* Spacing between submenu items */
    z-index: 9999;
  }

  nav ul li ul li a {
    display: block; /* Display submenu items as block elements */
    padding: 10px 40px; /* Spacing inside submenu items */
    color: #fff; /* Text color */
    text-decoration: none; /* Remove underline from links */
    transition: background-color 0.3s; /* Smooth transition for background color */
    z-index: 9999;
  }

  nav ul li ul li a:hover {
    background-color: #c00000; /* Darker background color on hover */
  }

  /********************************************************************center page division*********************************************************************/
	.con {
	   display: flex;
     align-items: flex-start;
    }

	.con .left{
	    width: 25%;	  
	}

  .con .lefttop, .leftbottom{
    background-color: #D2412D;
    box-shadow:5px 5px  10px #a9a9a9;
    padding: 10px;
    border-radius: 10px;
    margin-left: 40px;  
  }

  .con .right{
    width: 20%;
    margin-left: 40px;
    box-shadow:20px 20px 50px 10px #c6c5c5;
  }

	.con .mid {
    width: 50%;
    margin-left: 40px;
    padding: 2px;
	}

  /*********************************************************************left judicial links**********************************************************************/
	.con .left a{
	  display: block; /* Display anchor tags as block elements */
	  text-decoration: none; /* Remove underline */
	  font-size: 20px;
	  height: 40px;
	  line-height: 40px;
	  text-align: left;
	  color: white;
	  list-style-type: none;
	  padding: 5px;
    font-size: 18px;
    padding-right: 20px;
    background-color: #D2412D;
	}

  .con .leftbottom a{
    display: block; /* Display anchor tags as block elements */
    text-decoration: none; /* Remove underline */
    font-size: 20px;
    height: 65px;
    line-height: 20px;
    text-align: left;
    color: white;
    list-style-type: none;
    padding: 5px;
    font-size: 18px;
    padding-right: 20px;
    background-color: #D2412D;
  }

.con h1{
	font-weight: bold; /* Set font weight */
}

ul{
	list-style-type: none;
    padding: 0;
}

.con ul li{
	margin-bottom: 0px;
    background-color: white;
    padding: 0px;
    border-radius: 5px;
    font-family: Tahoma;
    
}
.con ul li:hover {
  
  font-size: 20px;
  font-weight: bold; /* Set font weight */
}
.con ul li a:hover{
  background-color: white;
  color: #D2412D;
}

/********************************************************************links and manuals******************************************************************/
.linksandmanuals{
  padding-top: 5px;
  display: inline-flex;
  width: 100%;
}


/*****************************************************************footer*********************************************************************************/
.footer{
  background-image: url(../images/footer-bottom-bg.png);
  text-align: center;
  color: white;
  padding: 10px;
}

.footer div span a{
  list-style: none;
  color: blue;
}

.footer div span a:hover{
  color: white;
}
/*********************************************************************banner footer***************************************************************************/
.bannerfooter{
  display: inline-flex;
  width: 100%;
  justify-content: center;
  background: url(../images/carousel-bg.png) repeat;
}

.bannerfooter li{
  display: inline;
}

/********************************************************************************judge table****************************************************************************/
.judgetable{
    width: 100%;
    display: inline-flex;
    justify-content: left;
  }

table {
  width: 70%;
  border-collapse: collapse;
  }
th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #f2f2f2;
    font-weight: bold;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:hover {
    background-color: #f1f1f1;
}



td a {
    display: block;
    color: white;
    text-decoration: none;
    background: #17a2b8;
    height: 50px;
    width: 100px;
    line-height: 50px;
    border-radius: 10px;
    text-align: center;
  }

td a:hover {
    color: white;
    text-decoration: none;
    font-size: 15px;
    background-color: blue;
    border-radius: 10px;
}

.jud_con{
  width: 100%;
  padding: 20px;
  display: inline-flex;
}
.jud_con .jud_left{
  width: 30%;
  padding-left: 10px;

}
.jud_con .jud_right{
  width: 70%;
  text-align: left;
}

.jud_left .buttons a{
  display: block;
  color: white;
  text-decoration: none;
  background: #17a2b8;
  height: 50px;
  width: 500px;
  line-height: 50px;
  border-radius: 10px;
  text-align: center;
}

.jud_left .buttons a:hover {
    color: white;
    text-decoration: none;
    font-size: 15px;
    background-color: blue;
    border-radius: 10px;
}

/****************************************************************login page center body**********************************************************/
.login_con{
  width: 50%;
  height: 800px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: Times New Roman, sans-serif;

}


.login_con form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    width: 450px;
    max-width: 90%;

}
h2 {
    text-align: center;
    color: #333;
}

input[type="text"],
input[type="password"] {
    width: calc(100% - 20px);
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #007bff;
}

input[type="submit"] {
    width: 100%;
    background-color: #748D92;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #2E3944;
}

.message {
    color: red;
    text-align: center;
    margin-top: 10px;
}
/***********************************************************************form********************************************************************/
.formdiv{
  width: 100%;
  height: absolute;
  display: inline-flex;
  justify-content: center;
  font-family: Times New Roman, sans-serif;
}


.formdiv form {
  width: 50%;
  margin: 50px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

}

.formdiv .input-group{
  margin-bottom: 20px;
  align-items: center;
}

.formdiv select {
  flex: 1;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 75%;
}

.formdiv input[type="number"] {
  flex: 1;
  margin-left: 10px;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 15%;
}

.formdiv button {
  padding: 10px 20px;
  background-color: #124E66;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.formdiv button:hover {
  background-color: #212A31;
}
/*******************************************************pendency form**********************************************************/
