* {
    margin: 0;
    
}

body {
  
  background-color: #1e1e2f; /* dark blue background */

  font-family: Ariel, sans-serif;

}

.dropdowns {
  position: relative;
  display: inline-block;
}

.dropdown-contents {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 120px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  border-radius: 5px;
}

.dropdown-contents a {
  color: black;
  padding: 10px;
  text-decoration: none;
  display: block;
}

.dropdown-contents a:hover {
  background-color: #f1f1f1;
}
.centered {
    padding-top: 200px;
    text-align: center;
}

.dashboard h1 {
  text-align: center;
  color: #333;
}

.cards2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card2 {
  background: white;
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card2 .top {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 10px;
}

.card2 .price {
  font-size: 24px;
  font-weight: bold;
}

.card2 .change.green {
  color: green;
}

.card2 .change.red {
  color: red;
}

.secret-text {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  background-color: #000;
}

#btn { 
  margin-bottom: 20px
}
h1 {
    font-size: 36px:
}
.transaction-table {
  width: 100%;
  max-width: 960px;
  margin: 40px auto;
  border-collapse: collapse;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.transaction-table th, .transaction-table td {
  padding: 14px 18px;
  text-align: center;
  border: 1px solid #ccc;
  
}

.transaction-table th {
  background-color: #0066ff;
  color: white;
  font-weight: bold;
  font-size: 15px;
}

.transaction-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.transaction-table tr:hover {
  background-color: #f1f1f1;
}

.transaction-table td {
  color: #333;
  font-size: 14px;
}

/* Optional: Status color coding */
.transaction-table td:nth-child(5) {
  font-weight: 600;
}

.transaction-table td:nth-child(5).processing {
  color: #f39c12;
}

.transaction-table td:nth-child(5).confirmed {
  color: #27ae60;
}

.transaction-table td:nth-child(5).failed {
  color: #e74c3c;
}

/* Container Styling */
#deposit-form {
  max-width: 480px;
  margin: 60px auto;
  padding: 30px 25px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Heading */
#deposit-form h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #222;
  font-size: 22px;
}

/* Input Groups */
#deposit-form div {
  margin-bottom: 20px;
}

/* Labels */
#deposit-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

/* Inputs and Selects */
#deposit-form input[type="text"],
#deposit-form input[type="number"],
#deposit-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: #f9f9f9;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

#deposit-form input:focus,
#deposit-form select:focus {
  border-color: #007bff;
  outline: none;
  background-color: #fff;
}

/* Submit Button */
#deposit-form button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  background-color: #0066ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#deposit-form button:hover {
  background-color: #004ecb;
}

/* Processing Message */
#processing {
  text-align: center;
  background-color: #fff8dc;
  border: 1px solid #ffe58f;
  padding: 15px;
  margin: 20px auto;
  border-radius: 6px;
  color: #8a6d3b;
  max-width: 460px;
  font-size: 15px;
}

.upload-form-container {
  max-width: 500px;
  margin: 60px auto;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.upload-form-container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.upload-form-container input[type="file"] {
  display: block;
  margin: 20px auto;
  border: 2px dashed #ccc;
  padding: 12px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}

.upload-form-container input[type="file"]:hover {
  border-color: #888;
}

.upload-form-container button {
  display: block;
  width: 100%;
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.upload-form-container button:hover {
  background-color: #45a049;
}
