body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: url('./../css/green-field-with-sun2.jpg') no-repeat center center/cover;

}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/*Expandable list style starts*/
.expand{
    padding: 30px;
    font-size: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Soft shadow for depth */
    max-width: 80%; /* Responsive width */
    
}
.centered-div h1 {
    font-size: 20px;
    color: black;
    margin-bottom: 20px;
}

.centered-div p {
    font-size: 18px;
    color: black;
    line-height: 1.5;
}
details {
            margin-bottom: 10px;

        }

        summary {
            cursor: pointer;
            font-size: 1.2em;
            font-weight: bold;
        }

        details[open] summary {
            color: green;
        }

        .content {
            margin-left: 20px;
            padding: 10px;
            background-color: #f1f1f1;
            border-radius: 5px;
        }
.clickable-div {
            width: 300px;
            height: 200px;
            background-color: lightblue;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            cursor: pointer;
            border-radius: 10px;
            transition: background-color 0.3s;
        }

        .clickable-div:hover {
            background-color: deepskyblue;
        }
/*Expandable list style ends*/
.abc 
    { 
    height: auto; 
    width: auto; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    } 
.card 
    {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	max-width: 600px;
	margin: auto;
	text-align: center;
	font-family: arial;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
	}
	
.card2 
    {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	max-width: 600px;
	margin: auto;
	text-align: Justify;
	font-family: arial;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
	}
		
.inactiveLink {
   pointer-events: none;
   color: red;
   cursor: default;
}


button {
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}