/* Reset default margin and padding */
body, h1, h2, p, header, button, i {
    margin: 0;
    left-padding: 0;
}

/* Apply a background color to the entire page */
body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
}

/* Style the platform containers with white background and blue border */


/* Style the header */
header {
    background-color: white;
    color: #fff;
    padding: 20px 0;
    text-align: center; /* Center align the text */
}

/* Style the menu at the bottom (unchanged) */
.bottom-menu {
    display: flex;
    justify-content: space-around;
    background-color: #2D3156;
    color: #fff;
    padding: 10px;
    position: fixed;
    bottom: 20px;
    width: 95%;
    border-radius: 20px;
    margin-left: 20px;
}

/* Style the content area */
.content {
    margin: 20px;
    text-align: center; /* Center align the content */
}
/* Style for earnings container */
.earnings-container {
    display: flex;
    justify-content: space-around;
    background: transparent;
}

/* Style for individual earnings */
.earning {
    text-align: center;
}

/* Style for wallet options buttons */
.wallet-options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.menu-button {
        text-decoration: none; /* Remove underline */
        color: white; /* Change link color to your desired color */
    }

    .profile-container {
    background-color: #1a1a2e; /* Dark blue background color */
    color: white;
    padding: 9px;
    text-align: center;
    font-size: 6;
}

.profile-container img {
    max-width: 10px; /* Adjust the width as needed */
    height: 300px;
}

.wallet-balance {
    font-weight: bold;
    font-size: 24px;
}

 .profile-container {
    background-color: #000;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .profile-icon {
    font-size: 24px; /* Adjust the size as needed */
  }

  .profile-link {
    color: #fff;
    text-decoration: none;
  }