/* Container for the login box */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s, color 0.3s;
  
}
.container {
  padding: 20px;
}
button {
  padding: 10px 20px;
  margin: 10px 0;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}
.day-mode {
  background-color: white;
  color: black;
}
.night-mode {
  background-color: #121212;
  color: #e0e0e0;
}
.night-mode button {
  background-color: #666666;
  color: #e0e0e0;
}
.day-mode button {
  background-color: #007BFF;
  color: #e0e0e0;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  margin: 10% auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
.night-mode .modal-content {
  background-color: #1e1e1e;
  color: #e0e0e0;
}
.day-mode div{
  background-color: white;
  color: black;
}
.day-mode .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.night-mode .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.night-mode div {
  background-color: #1e1e1e;
  color: #e0e0e0;
}
.night-mode .iconnav{
  color: #e0e0e0;
}
.day-mode .iconnav{

  color: #1e1e1e;
}
.close {
  color: #aaa;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: black;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

a {
    text-decoration: none;
  }
.main-container {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to a new line if needed */
    gap: 10px; /* Space between columns */
    justify-content: space-between;
    align-items: center;
    width: 100%;
    align-content: center;
    justify-content: center;

}

.login-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1px;
    padding: 1px;
    flex: 1 1 calc 60% ; /* 4 items per row on larger screens */
    white-space: nowrap;
    color:#fff;

    border-radius: 8px;
}



/* Styling the wallet address text */
#walletAddress {
    margin-left: 10px;
    font-size: 14px;
    word-break: break-all; /* Ensures long addresses wrap */
}
/* Circle for online status */
#statusIndicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
}

/* Color when connected (online) */
.status-online {
    background-color: #28a745; /* Green color */
}

/* Color when disconnected (offline) */
.status-offline {
    background-color: #ccc; /* Gray color */
}
/* Styling for the user icon */
.menu-icon {
    font-size: 20px; /* Adjust size as needed */
    margin-top: 20px;
    margin-right: 8px; /* Spacing between icon and button */
    align-items: center;
}
.menu-icon:hover {
    font-size: 20px; /* Adjust size as needed */
    color: #ffc107;
    margin-right: 8px; /* Spacing between icon and button */
    align-items: center;
}
a:active .menu-icon {
    color: #ffc107; /* Icon color on active state */
}
.user-icon {
    font-size: 30px; /* Adjust size as needed */
    color: #4a90e2; /* Icon color */
    margin-right: 8px; /* Spacing between icon and button */
    display: none; 
    align-items: center;
}

.mint-box-red {
    display: flex; /* Use flexbox */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    width: 90%; /* Fixed width for the button */
    max-width: 250px;
    height: 50px; /* Fixed height for the button */
    background: linear-gradient(135deg, #ff0000, #ff6600);
    color: white; /* White text color */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Change cursor to pointer on hover */
    font-size: small; /* Font size */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}
/* Optional: Change background color on hover */
.mint-box-red:hover {
    background: linear-gradient(135deg, #ff6600,#ff0000);

}

/* Optional: Add some padding */
.mint-box-red:active {
    background-color: #e60000; /* Even darker shade on active */
}

/* Refresh button styles */
#refreshButton {
    background-color: transparent; /* Transparent background */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 18px; /* Icon size */
    color: #4a90e2; /* Icon color */
    display: none; 
}

/* Optional: Change color on hover */
#refreshButton:hover {
    color: #1a73e8; /* Change to a different color on hover */
}




.overlay {
    display: none; /* Hide by default */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999; /* Ensure it appears above all content */
}

.spinner {
    border: 8px solid #f3f3f3; /* Light gray */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Spin animation */
    margin-bottom: 20px; /* Space between spinner and text */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loadingText {
    font-size: 24px;
}
.btn {
    padding: 10px 20px;
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn:disabled {
    background-color: #ccc; /* Gray */
    cursor: not-allowed;
}
/* Modern Minimal Clock Styling */



/* Styling for the logo container */
.logo-container {
    position: absolute;
    top: -40px; /* Overlap effect for desktop */
    left: 20px; /* Adjust position from left */
    z-index: 10; /* Keep logo above text */
}

/* Styling for the logo */
.logo {
    max-width: 100px; /* Adjust logo size */
    height: auto;
    transition: all 0.3s ease; /* Smooth transition */
}

/* Responsive styles for mobile screens */
@media (max-width: 600px) {
    .league-bar {
        text-align: center;
        padding-top: 20px; /* Space for the centered logo */
    }

    .logo-container {
        position: static; /* Make logo position relative to text */
        top: 0; /* Reset overlap */
        left: 0; /* Reset from left */
        transform: none; /* Remove transformation */
        z-index: 0; /* Reset z-index */
        margin-bottom: 10px; /* Space below logo */
    }

    .logo {
        max-width: 80px; /* Adjust logo size for mobile */
    }

    .league-bar h1 {
        font-size: 30px;
    }

    .league-bar h2 {
        font-size: 20px;
    }
}

.action-btn {
    background: linear-gradient(135deg, #3b83f6, #512da8);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  .action-btn:hover {
    background: linear-gradient(135deg, #512da8, #3b83f6);
    transform: translateY(-3px);
  }
.toplogo{
    color: #ffc107;
    font-size: 1.5rem;
    font-weight: bold;

    text-align: center;

}
.divmodal {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

button {
    background-color: #666666;
    color: #e0e0e0;
}
.dropdown {
    position: relative;
    max-width: 100%;
    width: 300px;
    margin: 0 auto;
    background-color: #1e1e1e;
   
  }
  .dropdown-button {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;

    cursor: pointer;
    font-size: 1rem;
    
  }
  .dropdown-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  .dropdown-button span {
    flex-grow: 1;
    text-align: left;
  }
  .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #1e1e1e;
    color: #e0e0e0;
    display: none;
    z-index: 10;
  }
  .dropdown-options .option {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    font-size: 1rem;
  }
  .dropdown-options .option:hover {
    background: #f0f0f0;
    color: #1e1e1e;
  }
  .dropdown-options img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  /* Responsive styles */
  @media (max-width: 768px) {
    .dropdown {
      width: 90%;
    }
    .dropdown-button {
      padding: 10px;
      font-size: 0.9rem;
    }
    .dropdown-options .option {
      padding: 10px;
      font-size: 0.9rem;
    }
  }
  @media (max-width: 480px) {
    .dropdown-button {
      padding: 8px;
      font-size: 0.8rem;
    }
    .dropdown-options .option {
      padding: 8px;
      font-size: 0.8rem;
    }
  }
