body {
  background: #37474f;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  overflow: hidden;
  font-family: sans-serif;
}

#navbarContainer{
  width: 400px;
  min-width: 400px;
  height: 100vh;
  max-height: 800px;
  background-color: #80c6ff;
  border-radius: 20px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  z-index:0;
}

#navbar{
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: absolute;
}

#bubbleWrapper{
  position: absolute;
  display: flex;
  justify-content: space-around;
  width: 100%;
  bottom: 25px;
}

.bubble{
  background-color: #fff;
  width: 50px;
  height: 50px;
  bottom: 85px;
  border-radius: 50%;
  z-index: 1;
  transform: translateY(120%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon{
  opacity: 0;
}

#bubble1{
  transform: translateY(0%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  > span{
    opacity: 0.7;
  }
}

#bgWrapper{
  filter: url(#goo);
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 60px;
}
#bg{
  background-color: #80c6ff;
  width: 120%;
  height: 100%;
  margin-left: -10%;
}
#bgBubble{
  position: absolute;
  background-color: #80c6ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  bottom: -50px;
  left: 50px;
  transform: translateX(-50%);
}

#menuWrapper{
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.menuElement{
  opacity: 0.4;
  transform: translateY(100%);
  cursor: pointer;
  &:hover{
    opacity: 0.5;
  }
}

#contentWrapper{
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  h2{
    color: #fff;
    font-family: sans-serif;
    font-weight: 400;
  }
}

.button-row {
    display: flex; /* Use flexbox to lay out children in a row */
    justify-content: center; /* Center the buttons horizontally */
    gap: 10px; /* Add some space between the buttons */
    margin:10px;
}

.action-button {
    padding: 10px 20px;
    background-color: #FFB300;
    border-radius: 10px;
    color: white;
    border: solid;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.5s ease;
    cursor: pointer;
    bottom:10%;
}

.button {
    position: absolute;
    bottom: 10%; /* Adjust based on your app's actual height for accuracy */
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background-color: #FFB300;
    border-radius: 10px;
    color: white;
    border: solid;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.5s ease;
    cursor: pointer;
}

.plus {
    position: relative;
    transform: translateX(360%);
    width:40px;
    padding: 10px;
    background-color: #FFB300;
    border-radius: 10px;
    color: white;
    border: solid;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.5s ease;
}

.content {
    height:100%;
    
}

.contentwarp {
    width: 400px;
    min-width: 400px;
    height: 100vh;
    max-height: 800px;
    border-radius: 20px;
    position: absolute;
    z-index: 1;
}

.ethbalance {
    padding-top: 10px;
    text-align: center;
    font-size: large;
    font-weight: bold;
    color: white;
}

.evbalance {
    padding-top: 10px;
    text-align: center;
    font-size: large;
    font-weight: bold;
    color: white;
}

.border {
    display:none;
    border-radius: 10px;
    border-color: white;
    text-align: center;
    /*height: 450px;
    overflow-y: scroll;
    scrollbar-width: none;*/
}

.element {
    overflow-y: scroll;
}

.element::-webkit-scrollbar {
    display: none; /* This effectively hides the scrollbar in Webkit browsers */
}

.element {
    overflow-y: scroll;
    scrollbar-width: none; /* Hides the scrollbar in Firefox */
}

.element {
    overflow-y: scroll;
}

/* Hide scrollbar for Webkit browsers */
.element::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.element {
    scrollbar-width: none;
}

/* #content1 {
    background-image: url(/img/wallet-a.png);
    background-size: contain;
    background-repeat: no-repeat;
    height: 64vh;
    border-radius: 25px;
}*/

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal-content {
    color: white;
}

.modal {
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  z-index: 1001;
  top: 50%; 
  background: #000000cc; 
  width: 360px; 
  border-radius: 20px;
  font-family: sans-serif;
  height: 628px;
}

.attribute-badge {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: #80c6ff; /* Light grey background */
    border-radius: 25px;
    font-size: 14px;
}

.close-button {
    color: white;
    display: block;
    font-size: xx-large;
    width: 50px;
    height: 50px;
    margin: 0px;
    cursor: pointer;
}

.nft-container {
    height: 38vh;
    overflow-y: scroll;
    scrollbar-width: none;
}

.claim {
    width: auto;
    border-radius: 50px;
    position: absolute;
    right: 10px;
    bottom: 25px;
    background-color:black;
    cursor: pointer;
}

.extra {
    width: auto;
    border-radius: 50px;
    position: absolute;
    right: 10px;
    bottom: 70px;
    background-color:#FFB300;
    font-size: xx-small;
    cursor: default;
}

.transaction {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: solid;
    border-radius: 10px;
    margin: 10px;
    color: white;
}

.claim-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.claimed-text {
    font-weight: bold;
}

.ev-token-amount {
    font-weight: bold;
}

.claim-time {
    font-size: 0.8em; /* Smaller text */
    margin-top: 5px; /* Space above the time */
    text-align: right; /* Align time to the right */
}

.evtoken-section {
    height: 40vh;
    overflow-y: scroll;
    scrollbar-width: none;
}

.swap-section {
    height: 40vh;
    overflow-y: scroll;
    scrollbar-width: none;
}

.total-balance {
    font-size: 20px;
    padding: 10px;
    color: white;
}

.balance-and-switch-container {
    display: inline-flex;
}

.total-balance {
    /* Adjust styles as needed, ensuring it aligns well with the switch button */
}

.switchview {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: #FFB300;
    color: white;
    cursor: pointer;
    border: solid;
    /* Remove position: absolute and related properties */
}


.claim-amount {
    position: absolute;
    width: auto;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%);
}

.greyed-out {
    background-color: black;
    color: white;
}
.amount-section {
    border: solid;
    border-color: white;
    margin: 8px;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
}
.note {
    font-size: smaller;
    color: white;
}

.inputGroup {
  font-family: 'Segoe UI', sans-serif;
  position: relative;
}

.inputGroup input {
    border: solid;
    border-color: white;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
    width: 80%;
    margin: auto;
}

.inputGroup :is(input:focus, input:valid) {
  border-color: rgb(255, 255, 255);
}


.swapGroup .input-wrapper {
    position: relative;
    display: flex;
    justify-content: center; /* Center children horizontally */
    align-items: center;
}

.swapGroup input {
    border: solid;
    border-color: white;
    border-radius: 20px;
    padding: 15px;
    padding-right: 40px; /* Adjust if needed to make room for the placeholder text */
    text-align: center;
    width: 80%;
    box-sizing: border-box; /* Ensures padding is included in width */
}

.swapGroup .input-placeholder {
    position: absolute;
    right: 15%; /* Adjust based on the width of the input to place it near the right edge inside */
    color: grey;
    pointer-events: none; /* Makes the placeholder unclickable */
}

.swapGroup i.fa-rotate {
    cursor: pointer;
    margin: 10px 10px;
    color: white;
    font-size: large;
}

/* For Chrome, Safari, Edge, Opera */
.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
.no-spinners[type=number] {
    -moz-appearance: textfield;
}

.fa-spinner {
    color:white;
}

.section4 {
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    height: 550px;
    overflow: hidden;
}

/* Style for individual boxes */
.white-box {
  flex: 1 1 150px; /* Adjust the basis and flex-grow/shrink as needed */
  height: 150px; /* Adjust the height as needed */
  background-color: #FFFFFF; /* White background for the box */
  border-radius: 10px; /* Adjust the border radius as needed */
}

/* Special style for a larger box */
.white-box.large {
  flex: 2 1 300px; /* Adjust the basis and flex-grow/shrink as needed */
  height: 300px; /* Adjust the height as needed */
}

.balance-container {
    display: flex;
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Aligns items vertically in the center */
    text-align: center; /* Centers text if needed, for the divider for instance */
}

.balance-container > div {
    margin: 0 10px; /* Adds horizontal spacing around each child div */
    display: flex; /* Keeps the inner divs in flex layout */
    align-items: center; /* Ensures content of divs is vertically centered */
}

/* If your screen is wide and you want the entire row (container) centered, wrap it */
.container-wrapper {
    display: flex;
    justify-content: center; /* This centers the .balance-container itself */
    width: 100%; /* Takes full width to center content */
}

.divider {
    color: white;
    margin: 5px 0 0 !important;

}

.overlay {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease; /* Optional: adds a transition effect */
}

.smallamount {
    font-size:smaller;
    background-color: #FFB300;
    padding: 5px;
    border-radius: 10px;
    color: white;
    border: solid;
    margin:3px;
}

.small-button {
    text-align: right;
    margin-right: 40px;
    margin-top: 10px;
    cursor:pointer;
}

.errorSection {
    display: block;
    background-color: red;
    padding: 3px;
    border-radius: 20px;
    color: white;
    margin-top: 10px;
    margin-left: auto;
    font-size: smaller;
    width: 200px;
    margin-right: auto;
}

.content h2 {
	color: #fff;
	font-size: 8em;
	position: absolute;
	transform: translate(-50%, -50%);
}

.content h2:nth-child(1) {
	color: transparent;
	-webkit-text-stroke: 2px #ffffff;
}

.content h2:nth-child(2) {
	color: #5095ff;
	animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
	0%,
	100% {
		clip-path: polygon(
			0% 45%,
			16% 44%,
			33% 50%,
			54% 60%,
			70% 61%,
			84% 59%,
			100% 52%,
			100% 100%,
			0% 100%
		);
	}

	50% {
		clip-path: polygon(
			0% 60%,
			15% 65%,
			34% 66%,
			51% 62%,
			67% 50%,
			84% 45%,
			100% 46%,
			100% 100%,
			0% 100%
		);
	}
}