

body {
text-align: right;
            
            color : darkblue;
font-family: Arial;
            font-size: 20px;
font-weight:bold;
	
	p {
font-family: Arial;
            font-size: 20px;
	}

	.popup {
    display: none;
    position: fixed;
    top: 15%;
    left: 5%;
    width: 60%;
    height:75%;
    background-color: lavender;
    color: darkblue; /* Adjust for readability */
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 10px;
    z-index: 9999;
    overflow: auto;
		text-align: center;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.popup button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #0070ba;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;

}

	/* Banner container */
.banner {
  position: fixed;
  top: 30%;
  left: 0;
  height: 50%;
  background: aliceblue;
  border-left: 1px solid #ccc;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  overflow: hidden;
  transition: width 0.3s ease;
}

/* Expanded width */
.banner.expanded {
  width: 70%;
  text-align: center;
}

/* Collapsed width */
.banner.collapsed {
  width: 20px;
}

/* Toggle button — INSIDE banner */
.toggle-btn {
  position: absolute;
  top: 20;
  transform: translateY(-50%);
  width: 25px;
  height: 40px;
  background: #ddd;
  border: 1px solid #aaa;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  border-radius: 5px 0 0 5px;
  transition: right 0.3s ease;
}

/* Button position when collapsed */
.banner.collapsed .toggle-btn {
  left: 2px; /* sits outside the 40px banner */
}

/* Button position when expanded */
.banner.expanded .toggle-btn {
  left: 97%; /* sits outside the 300px banner */
}


h5 {
color : white;
background : dodgerblue;
font-size : 24px;
font-weight : bold;
padding : 10px;
}

	