@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=EB Garamond');

*{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

li{
    list-style: none;
}

/* header and footer section */

.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #002D74;
  height: 45px;
  position: fixed;
  top: 0;
  width: 100%;
  transition: background-color 0.3s ease; /* Smooth transition */
  z-index: 1000; /* Ensure it's above other content */
}

.header-right ul li{
  display: inline-block;
  flex-direction: column;
  margin: auto;
  padding-right: 30px;
}
.header-left h2 a{
  text-decoration: none;
  color: white;
  padding-left: 30px;
}

.header-right ul li a{
  text-decoration: none;
  color: white;
}

.header.scrolled {
  background-color: rgba(0, 45, 116, 0.5); /* Change to translucent color on scroll */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Add shadow */
}

/* Styles for the link underline effect */
.header-left h2 a,
.header-right ul li a {
  position: relative;
  color: white;
}

.header-left h2 a::before,
.header-right ul li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}


.header-right ul li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}





.footer {
    background-color: #F1EAEA;
    color: #002D74;
    padding: 15px 0;
    text-align: center;
    height: 200px;
    margin-top: auto;
    line-height: 30px;
    width: 100%;
}

.icon img{
    height: auto;
    width: 25px;
}

.social-icons {
    display: flex;
    gap: 30px; 
    justify-content: center;
    margin-top: 40px;
}


.icon {
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
    border-radius: 50%; /* For circular icons */
}




/* home page */

body{
  padding-top: 70px;
  background-color: #FBFBFC;
}

/* first section */

.main-one{
    display: flex;
    justify-content: center;
    flex-direction: column;
    color:#002D74;
    height: 250px;
    gap: 30px;
    text-align: center;
}

.main-one h2{
    font-weight: 100;
    padding-left: 90px;
    padding-right: 90px;   
}

.main-photos{
    display: flex;
    flex-direction: row;
    width: 400px;
    justify-content: center;
    margin: auto;
    margin-top: 20px
}

.main-one img,
.main-one svg{
    height: 50px;
    width: auto;
}



/* second section */


.main-two{
    display: flex;
    justify-content: space-evenly;
    height: 600px;
    align-items: center;
    color: #002D74;
    line-height: 30px;
    animation: slideInFromBottom 2s ease forwards; 
    gap: 15px;
}

.section-one p{
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.section-one h1{
    margin-bottom: 30px;
    padding-bottom: 15px;
    align-self: center;
}
.section-one a{
    align-self: center;
    color: #002D74;
}

.section-one{
    display: flex;
    flex-direction: column;
}

.section-two{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.main-two img{
    height: 400px;
    width: 650px;
}

.main-two-b{
    display: flex;
    flex-direction: column;
    height: 500px;
    width: 500px;
}

/* section three */

.main-three{
    display: flex;
    justify-content: center;
    height: 800px;
    color: white;
}
.main-three-a img{
    height: 500px;
    width: 600px;
}
.container-three{
    display: flex;
    background-color: #002D74;
    background-position: center, center; 
    width: 1200px;
    height: 700px;
    border-radius: 20px;
    justify-content: space-evenly;
    align-items: center;

}
.main-three-b{
    display: flex;
    flex-direction: column;
    height: 500px;
    width: 400px;
    line-height: 35px;
    justify-content: center;
}

.main-three-b p{
    margin-bottom: 20px;
    font-weight: 1000;
}

.main-three-b h2{
    margin-bottom: 30px;
    align-self: center;
}

.main-three-b a{
    align-self: center;
    color: #002D74;
}

/* 
media version */


/* fade transition */
.fade-in {
    opacity: 50%;
    transition: opacity 1s ease-in-out;
}
    
/* Apply fade-in effect */
.fade-in.active {
    opacity: 1;
}

@keyframes slideInFromBottom {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .main-photos img {
    animation: slideInFromBottom 2s ease forwards;
  }
  

/* fade on scroll */

.fade-up-main {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s, transform 1s;
}

.fade-in-main {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-main.fade-up-main {
  opacity: 1;
  transform: translateY(0);
}

  
/* .buttonM style */

  .buttonM {
    align-items: center;
    appearance: none;
    background-color: #fff;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: #002D74;
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-size: 15px;
    font-weight: 600;
    height: 48px;
    width: 200px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform,opacity;
      }

  .buttonM a{
    text-decoration: none;

  }
  
  .buttonM:hover {
    background: #F6F9FE;
    color: #174ea6;
  }
  
  .buttonM:active {
    box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
    outline: none;
  }
  
  .buttonM:focus {
    outline: none;
    border: 2px solid #4285f4;
  }
  
  .buttonM:not(:disabled) {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
  }
  
  .buttonM:not(:disabled):hover {
    box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
  }
  
  .buttonM:not(:disabled):focus {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
  }
  
  .buttonM:not(:disabled):active {
    box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
  }
  
  .buttonM:disabled {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
  }



  #back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    font-size: 12px;
    background-color: #F1EAEA;
    color:#002D74;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    padding: 15px;
    width: 110px;
  }

  #back-to-top-btn:hover {
    background-color: #002D74;
    color: #F1EAEA;
  }


  /* media for mobile */

  @media screen and (max-width: 767px) { 
    
    .header{
      width: 100%;
    }
    .main-one{
      padding-top: 100px;
    }

    .main-one h2{
      font-weight: 100;
      padding-left: 10px;
      padding-right: 10px;   
  }


    .main-two{
      flex-direction: column;
      padding-top: 0px;
    }

    .main-two img{
      display: none;
    }
    .section-one{
      width: 380px;
    }
    .main-two-b{
      justify-content: center;
      align-items: center;
      width: 400px;
    }


    .main-three{
      display: flex;
      justify-content: center;
      height: 600px;
      color: white;
    }
    .main-three-a img{
      display: none;
    }
    .container-three{
      display: flex;
      background-color: #002D74;
      background-position: center, center; 
      width: 400px;
      height: 500px;
      border-radius: 20px;
      justify-content: space-evenly;
      align-items: center;

    }
    .main-three-b{
      display: flex;
      flex-direction: column;
      height: 500px;
      width: 380px;
      line-height: 35px;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    #back-to-top-btn{
      bottom: 10px;
      right: 10px;
    }
}




/* ********** choice board css ************ */


  .container{
    height: 900px;
  }



  #center-header{
    text-align: center;
    margin-top: 40px;
    color: #002D74;
  }


  .columnHeaderTools{
    background-color: #002D74;
    color: white;
    height: 40px;
    width: 280px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    font-weight: 600;
    font-size: 18px;
    border-radius: 10px 0px 10px 0px;
}
  .columnHeaderPro{
    background-color: #c1022f;
    color: white;
    height: 40px;
    width: 480px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    font-weight: 600;
    font-size: 18px;
    border-radius: 10px 0px 10px 0px;
}
  .columnHeaderPlat{
    background-color: #3474da;
    color: white;
    height: 40px;
    width: 280px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    font-weight: 600;
    font-size: 18px;
    border-radius: 10px 0px 10px 0px;
}

#logo{
  display: flex;
  height: auto;
  width: 30px;
  gap: 10px;
  padding-left: 5px;
}

.choiceBoard{
  height: 620px;
  width: 1150px;
  margin: auto;
  background-color: #fff;
  margin-top: 60px ;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
  gap: 10px;
  justify-content: space-evenly;
  padding-top: 15px;
}

.allBuckets{
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: -30px;
}

/* columns */

.columnOne {
  justify-self: center;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.columnTwo {
  justify-self: center;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.columnThree {
  justify-self: center;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}


/* buckets */
.bucket{
  display: flex;
  height: 100px;
  border: 2px solid #F1EAEA;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 5px;
  font-size: 14px;
}

/* column one */

#bucketA1{
  height: 175px;
  width: 280px;

}
.buttonRow button{
  width: 108px;
}
#sanctButton{
  height: 45px;
}
#rewButton{
  height: 45px;
}

#antiButton{
  width: 220px;
  height: 45px;
}



#bucketA2{
  height: 80px;
  background-color: #F1EAEA;
  width: 280px;

}
#bucketA2 button{
  height: 45px;
  width: 220px;
}


#bucketA3{
  background-color: #F1EAEA;
  height: 200px;
  width: 280px;

}

#bucketA3 button{
  height: 45px;
  width: 220px;
  font-size: 12px;
}



/* column two */
#bucketB1{
  height: 90px;
  width: 480px;
  display: flex;

}
.bucketB1sub{
  display: flex;
  flex-direction: row;
  width: 380px;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.bucketB1sub button{
  height: 40px;
  width: 180px;
}
#buttonRowB1a{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#buttonRowB1b{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#buttonRowB1a button{
  height: 25px;
  width: 200px;
  font-size: 12px;
}

#buttonRowB1b button{
  height: 25px;
  width: 200px;
  font-size: 12px;
}

#bucketB2{
  display: flex;
  height: 70px;
  width: 480px;
  margin-top: -15px;
}

#subBucketB2{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

#bucketB2 button{
  font-size: 10px;
  height: 30px;
  width: 150px;
}


.bucketB3{
  margin-top: -5px;
  height: 80px;
  width: 480px;
  display: flex;
  gap: 5px;
}
#bucketB4{
  height: 80px;
  width: 240px;
  background-color: #F1EAEA;
}

#bucketB4 button{
  width: 180px;
}

#bucketB5{
  height: 80px;
  width: 240px;
  display: flex;
}

.aviButtons button{
  height: 35px;
  width: 100px;
}

#bucketB6{
  height: 90px;
  width: 480px;
  background-color: #F1EAEA;
}
.manButtons{
  display: flex;
}
#manButtons button{
  width:150px;
  height:50px;
}


#bucketB7{
  height: 98px;
  width: 480px;
  background-color: #F1EAEA;
  margin-top: -10px;
}
#bucketB7 button{
  width: 460px;
  height: 30px;
}

#addButtons button{
  width: 150px;
  height: 30px;
}

/* column three */


#bucketC1{
  height: 175px;
  width: 280px;
  text-align: center;
}
.ileaBucket{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 6px;
}
#subBucketC1{
  display: flex;
  flex-direction: column;
  gap: 6px;

}
#subBucketC1 button{
  height: 35px;
  width: 90px;
}

#bucketC2{
  height: 80px;
  width: 280px;
}
#bucketC2 button{
  width: 180px;
  height:35px;
}


#bucketC3{
  height: 95px;
  width: 280px;
}
.interRow1 button{
  width: 65px;
}
.interRow button{
  width: 100px;
}


#bucketC4{
  height: 95px;
  background-color: #F1EAEA;
  width: 280px;
  display: flex;
  margin-top: -5px;
}
#toolRow{
  display: flex;
  gap: 6px;

}
#toolRow button{
  height: 30px;
  width: 95px;
  font-size: 11px;
}


/* dialog */

/*Dialog Styles*/
dialog {
	padding: 1rem 3rem;
	background: white;
	max-width: 400px;
	padding-top: 2rem;
	border-radius: 20px;
	border: 0;
	box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
	animation: fadeIn 1s ease both;
  text-align: center;
  position: fixed; /* Set the position to fixed */
  top: 50%; /* Position it 50% from the top */
  left: 50%; /* Position it 50% from the left */
  transform: translate(-50%, -50%); /* Translate it back by 50% of its own width and height */
  9; /* Ensure it's on top of other elements */
	&::backdrop {
		animation: fadeIn 1s ease both;
		background: rgba(161, 161, 161, 0.4);
				backdrop-filter: blur(50%);
	}
	.x {
		filter: grayscale(1);
		border: none;
		background: none;
		position: absolute;
		top: 15px;
		right: 10px;
		transition: ease filter, transform 0.3s;
		cursor: pointer;
		transform-origin: center;
		&:hover {
			filter: grayscale(0);
			transform: scale(1.1);
		}
	}

    .sharepoint{

        border: none;
		background: none;
		position: absolute;
		top: 10px;
        left: 10px;
        height: auto;
        width: 35px;


    }
	h2 {
		font-weight: 600;
		font-size: 2rem;
		padding-bottom: 1rem;
	}
	p {
		font-size: 1rem;
		line-height: 1.3rem;
		padding: 0.5rem 0;
		a {
            font-size: 21px;

			&:visited {
				color: rgb(var(--vs-primary));
			}
		}
	}
}




/*General Styles*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=EB Garamond');


body{   
    font-family: 'Open Sans', sans-serif;
  }


#center-header h1{
    font-family: 'EB Garamond';font-size: 50px;
    font-weight:800;

}

button.primary {
	display: inline-block;
	font-size: 0.8rem;
	color: #fff !important;
	background: rgb(var(--vs-primary) / 20%);
	padding: 13px 25px;
	border-radius: 17px;
	transition: background-color 0.1s ease;
	box-sizing: border-box;
	transition: all 0.25s ease;
	border: 0;
	cursor: pointer;
	box-shadow: 0 10px 20px -10px rgb(var(--vs-primary) / 50%);
	&:hover {
		box-shadow: 0 20px 20px -10px rgb(var(--vs-primary) / 50%);
		transform: translateY(-5px);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


.dialog p{
    font-size: 25px;
}



.dialog a{
    font-size: 21px;

}

.modalButton{
  display: inline-block;
  font-size: 16px;
  align-items: center;
    appearance: none;
    background-color: #fff;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: #002D74;
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-size: 15px;
    font-weight: 600;
    height: 48px;
    width: 200px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 2px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform,opacity;
    }


.modalButton a{
  text-decoration: none;

}

.modalButton:hover {
  background: #F6F9FE;
  color: #174ea6;
}

.modalButton:active {
  box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
  outline: none;
}

.modalButton:focus {
  outline: none;
  border: 2px solid #4285f4;
}

.modalButton:not(:disabled) {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.modalButton:not(:disabled):hover {
  box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.modalButton:not(:disabled):focus {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.modalButton:not(:disabled):active {
  box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

.modalButton:disabled {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}


.columnOne button{
  background-color:#002D74;
  color: white;
  border: none;
  border-radius: 10px;
  height: 30px;
}
.columnTwo button{
  background-color:#c1022f;
  color: white;
  border: none;
  border-radius: 10px;
  height: 30px;
}
.columnThree button{
  background-color:#4285f4;
  color: white;
  border: none;
  border-radius: 10px;
  height: 30px;
}




/* filter styles */
.bucket {
  opacity: 1;
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}


.bucket.filtered {
  opacity: 0.25; 
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}


.tool-button.disabled {
  pointer-events: none;
  cursor: not-allowed;
}

.tool-button{
  cursor: pointer;
}


.filter-dropdown {
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #ffffff;
  color: #002D74;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 550;
  outline: none;
  cursor: pointer;
  appearance: none; 
  text-align: center;
  width: 170px;
  background-image: url("/assets/filter.svg");
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 20px; /* Adjust the padding to accommodate the image */
}


.filter-option {
  background-color: #fff;
  color: #333;
}

.filter-option:hover {
  background-color: #f0f0f0;
}


.filter-dropdown-arrow {
  position: relative;
  float: right;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #555;
}

.filterPos{
  display: flex;
  flex-direction: row;
  width: 1100px;
  height: 40px;
  justify-content:space-between;
  margin-top: -55px;
  margin-bottom: -40px;
}

#filterSelect{
  margin-top: 10px;
  height: 40px;
}


#key-container{
  display: flex;
  justify-content: center;
  height: 10px; 
  margin-left: 10px;
}
#board-key{
  display: flex;
  flex-direction: row;
  width: 450px;
  height: 50px;
  border-radius: 10px;
  gap: 10px;
  align-items: center;

}

#board-key h2{
  font-size: 16px;
  color: #002D74;
;
}

.keybox{
  width: 280px;
  height: 38px;
  border: 2px solid #e0dcdc;
  text-align: center;
  font-size: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
#key2{
  background-color: #F1EAEA;
}


/* mobile for choice board */
@media screen and (max-width: 767px){

  .choiceBoard{
    width: 410px;
    height: 2500px;
    flex-direction: column;
  }
  .allBuckets{
    flex-direction: column;
    align-items: center;
  }

  .columnHeaderPro{
    width: 400px;
  }

  .columnTwo{
    align-items: center;
    width: 100%;
  }


/* column two */
#bucketB1{
  height: 90px;
  width: 400px;
  display: flex;

}
.bucketB1sub{
  display: flex;
  flex-direction: row;
  width: 380px;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.bucketB1sub button{
  height: 40px;
  width: 160px;
}
#buttonRowB1a{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#buttonRowB1b{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#buttonRowB1a button{
  height: 25px;
  width: 180px;
  font-size: 12px;
}

#buttonRowB1b button{
  height: 25px;
  width: 200px;
  font-size: 12px;
}

#bucketB2{
  display: flex;
  height: 150px;
  width: 300px;
  margin-top: -15px;
}

#subBucketB2{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#bucketB2 button{
  font-size: 10px;
  height: 30px;
  width: 150px;
}


.bucketB3{
  margin-top: -5px;
  height: 160px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
#bucketB4{
  height: 80px;
  width: 240px;
  background-color: #F1EAEA;
}

#bucketB4 button{
  width: 180px;
}

#bucketB5{
  height: 80px;
  width: 240px;
  display: flex;
}

.aviButtons button{
  height: 35px;
  width: 100px;
}

#bucketB6{
  height: 250px;
  width: 300px;
  background-color: #F1EAEA;
  text-align: center;
}
#manButtons{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
#manButtons button{
  width:150px;
  height:50px;
}


#bucketB7{
  height: 250px;
  width: 350px;
  background-color: #F1EAEA;
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#bucketB7 button{
  width: 150px;
  height: 60px;
}

#addButtons button{
  width: 150px;
  height: 40px;
}

#addButtons{
  display: flex;
  flex-direction: column;
  gap: 8px;
}



  .filterPos{
    display: flex;
    flex-direction: column;
    width: 400px;
    height: 200px;
    justify-content:center;
    align-items: center;
    align-self: center;
    gap: 40px;
  }
  
  #board-key{
    width: 390px;
    align-items: center;
    justify-content: center;
  }


}



/* **************** OFFICE PAGE ******************** */



.main-office{
  height: 1200px;
  text-align: center;
  color: #002D74;
  margin-top: 30px;
}




.office-map {
  position: relative; /* Ensure the container is positioned relatively */
  height: 900px;
  width: 1150px;
  margin: auto;
  background-color: #fff;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
  gap: 10px;
  justify-content: space-evenly;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-items: center;
  position: relative;
}

.map img{
  width: 600px;
  height: 600px;
}



.map{
  width: 600px;
  height: 600px;        
}


#section-one,
#section-2,
#section-three{
  cursor: pointer;
}

#sectionInfo{
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: -40px;
}

#sectionP{
  margin-top: -80px;
  margin-bottom: -40px;
}


@keyframes fade-pulse {
  0% {
      filter: brightness(100%);
      box-shadow: 0 0 10px rgba(0, 0, 255, 0.5);
      transform: scale(1);
  }
  50% {
      filter: brightness(150%);
      box-shadow: 0 0 20px rgba(0, 0, 255, 0.7);
      transform: scale(1.0051); /* Slightly larger */
  }
  100% {
      filter: brightness(100%);
      box-shadow: 0 0 10px rgba(0, 0, 255, 0.5);
      transform: scale(1);
  }
}

.hover-effect {
  cursor: pointer;
  animation: fade-pulse 1.5s ease infinite;
}

.clicked.hover-effect {
  animation: none; /* Remove animation on click */
  filter: brightness(90%); /* Reset brightness on click */
  box-shadow: none; /* Remove glowing effect on click */
}



.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%; /* Make it a circle */
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none; /* Initially hide the circle */
  
}



.circle p{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.circle p1{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
}
.circle p2{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 15px;
}

.circle.red{
 background-color: #c1022f;
 display: flex;
 color: white;
 font-size: 20px;
 
}
.circle.light-blue{
background-color: #3474da;
display: flex;
color: white;
font-size: 20px;

}
.circle.dark-blue{
background-color: #002D74;
display: flex;
color: white;
font-size: 20px;

}

#light-blue-circle1{
  top: 85%;
  left: 67%;
  color: #4285f4;
  background-color: white;
  border: solid #4285f4;
  border-width: 4px;
  
}
#light-blue-circle2{
  top: 85%;
  left: 35%;
  color: #4285f4;
  background-color: white;
  border: solid #4285f4;
  border-width: 4px;

}
#light-blue-circle3{
  left: 51%;
  color: #4285f4;
  background-color: white;
  border: solid #4285f4;
  border-width: 4px;
}

#dark-blue-circle1{
  top: 40%;
  left: 78%;
  background-color: white;
  border: solid #002D74;
  border-width: 4px;
  color: #002D74;
}
#dark-blue-circle2{
  top: 60%;
  left: 80%;
  background-color: white;
  border: solid #002D74;
  border-width: 4px;
  color: #002D74;
}
#dark-blue-circle3{
  top: 51%;
  left: 84%;
  height: 65px;
  width: 65px;
}
#dark-blue-circle4{
  top: 60%;
  left: 88%;
  height: 65px;
  width: 65px;
}
#dark-blue-circle5{
  top: 70%;
  left: 80%;
  height: 65px;
  width: 65px;
}

#red-circle1{
  top: 25%;
  left: 24%;
  background-color: white;
  border: solid #c1022f;
  border-width: 4px;
  color: #c1022f;
} 
#red-circle2{
  top: 45%;
  left: 21%;
  background-color: white;
  border: solid #c1022f;
  border-width: 4px;
  color: #c1022f;
}
#red-circle3{
  top: 65%;
  left: 22%;
  background-color: white;
  border: solid #c1022f;
  border-width: 4px;
  color: #c1022f;
}
#red-circle4{
  top: 50%;
  left: 35%;
  color: #c1022f;
  background-color: white;
  border: solid #c1022f;
  border-width: 4px;
}

#red-circle5{ 
  height: 80px;
  width: 80px;
  top: 75%;
  left: 26%;
  font-size: 14px;
}

#red-circle5 p1{
height: 80px;
}

#red-circle16{ 
  height: 65px;
  width: 65px;
  top: 74%;
  left: 18%;
  font-size: 15px;
}
#red-circle6{ 
  height: 65px;
  width: 65px;
  top: 52%;
  left: 15%;
}
#red-circle7{ 
  height: 65px;
  width: 65px;
  top: 44%;
  left: 13%;
}
#red-circle8{ 
  height: 50px;
  width: 50px;
  top: 34.8%;
  left: 24%;
}
#red-circle9{ 
  height: 50px;
  width: 50px;
  top: 33%;
  left: 18.5%;
}
#red-circle10{ 
  height: 50px;
  width: 50px;
  top: 26%;
  left: 16%;
}
#red-circle11{ 
  height: 50px;
  width: 50px;
  top: 15%;
  left: 24%;
}
#red-circle12{ 
  height: 50px;
  width: 50px;
  top: 18%;
  left: 18%;
}
#red-circle13{ 
  height: 50px;
  width: 50px;
  top: 26%;
  left: 32%;
}
#red-circle14{ 
  height: 50px;
  width: 50px;
  top: 18%;
  left: 30%;
}
#red-circle15{ 
  height: 50px;
  width: 50px;
  top: 32%;
  left: 29.5%;
}


/* pop up on hover */

.circle .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #e5e5e5;
  color: black;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  font-size: 12px;
  
  
  /* Position the tooltip */
  position: absolute;
  bottom: 100%;
  left: 42%;
  margin-left: -60px;
}

.circle:hover .tooltiptext {
  visibility: visible;
  isolation: isolate;
}



