body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0; /* This might be the issue */
    background: linear-gradient(to bottom right, #322f4e, rgb(252,52,100));
    color: #ffffff;
}
  
  .container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2a253e; /* Darker color */
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Clear floats */
  }

  
  .about-heading {
    text-align: center;
    margin-bottom: 20px;
    color: rgb(252, 52, 100);
    font-size: 1.7em; /* Increase font size */
    text-transform: uppercase; /* Convert text to uppercase */
    font-weight: bold; /* Apply bold font weight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add a subtle text shadow */
}

.detailed-btn {
  background-color: rgba(252, 52, 99, 0.349); /* Background color */
  color: #ffffffb2; /* Text color */
  border: none; /* Remove border */
  padding: 5px 5px; /* Add padding */
  font-size: 15px; /* Font size */
  cursor: pointer; /* Add cursor pointer on hover */
  border-radius: 5px; /* Add border radius */
  transition: background-color 0.3s; /* Smooth transition effect */
}

.detailed-btn:hover {
  background-color: rgba(252, 52, 99, 0.753); /* Darken the background color on hover */
  color: #ffffffda; /* Text color */
}

.pro-tips-heading {
    text-align: center;
    margin-bottom: 15px;
    color: rgb(252, 52, 100);
    font-size: 1.5em; /* Increase font size */
    text-transform: uppercase; /* Convert text to uppercase */
    font-weight: bold; /* Apply bold font weight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add a subtle text shadow */
}

  .sidebar {
    float: left;
    width: 45%; /* Adjust width as needed */
  }
  
  .logo-container {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .logo-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  .sidebar h1 {
    text-align: center;
    margin-bottom: 5px;
    color: rgb(252, 52, 100);
    font-size: 2.5em; /* Increase font size */
    text-transform: uppercase; /* Convert text to uppercase */
    font-weight: bold; /* Apply bold font weight */
    letter-spacing: 2px; /* Add letter spacing for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); /* Add a subtle text shadow */
  }
  
  .invite-container {
    text-align: center;
  }
  
  .invite-button {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 5px 10px;
    border: none;
    text-transform: uppercase; /* Convert text to uppercase */
    border-radius: 5px;
    font-weight: bold;
    background-color: rgb(252,52,100);
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    text-shadow: 2px 1px 1px rgba(255, 255, 255, 0.5); /* Add a subtle red text shadow with 50% opacity */
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-top: 10px;
  }
  
  .invite-button:hover {
    background-color: rgba(252, 52, 99, 0.671);
  }
  
  .commands {
    float: right;
    width: 55%; /* Adjust width as needed */
  }
  
  .command {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: #47425d;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  
  .command-title {
    font-weight: bold;
    color: #ff8800;
  }
  
  .Type_of_command {
    font-weight: bold;
    color: #ff8800;
  }
  
  .example {
    margin-top: 10px;
    padding-left: 20px;
    font-style: italic;
    display: none;
  }
  
  .example span {
    color: #ffffff;
  }
  
  .optional-ways {
    font-style: normal;
    color: #ff8800;
  }
  
  @media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    .sidebar {
        display: none; /* Hide the sidebar on small screens */
    }
    .commands {
        width: 100%;
        margin-bottom: 20px;
    }
}
  
  #description {
    padding: 20px;
    margin-bottom: 20px; /* Added margin bottom */
  }
  
  #description {
    padding: 20px;
    margin-bottom: 20px; /* Added margin bottom */
  }
  
  .expand-btn {
    background-color: rgb(255, 0, 119);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  
  .command {
    position: relative;
    padding-right: 120px; /* Adjust to accommodate the button */
  }
  
  .command-title {
    font-weight: bold;
    color: #ff8800;
  }
  
  .example {
    margin-top: 10px;
    padding-left: 20px;
    font-style: italic;
    display: none;
  }
  
  .example span {
    color: #ffffff;
  }
  



  #description {
    padding: 20px;
  }
  
  .about-heading {
    margin-bottom: 10px;
  }
  
  ul {
    padding-left: 20px;
  }
  
  .highlight {
    color: #7289DA; /* Change color to Discord's purple */
  }
  
  .command-title {
    color: #ff8c00; /* Change color to orange */
  }
  
  #description p {
    margin-bottom: 15px;
  }
  