body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff; /* Dark background */
    font-family: Arial, sans-serif;
    color: white;
  }

  /* Header Section Styles */
.header {
  text-align: center;
  margin-bottom: 20px;
  margin-right: 40px;
}

.logo {
  width: 400px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 1px;
}

.title {
  font-size: 2rem;
  color: rgb(52, 52, 52);
}

  
  .phone {
    width: 360px;
    height: 640px;
    border: 10px solid black;
    border-radius: 30px;
    background-color: #323234;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  
  .status-bar {
    background-color: #1e1e1f;
    padding: 10px;
    color: #d1d1d6;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
  }
  
  .screen {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .content {
    text-align: left;
    padding: 25px;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
  }

  .training-content {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #d1d1d6;
    margin-top: 150px;
  }
  
  .round-button {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .button-text {
    color:rgb(195, 193, 193);
    font-size: 1.2rem;
  }
  
  .reject {
    background-color: #ff3b30;
  }
  
  .accept {
    background-color: #34c759;
  }
  
  .rect-button {
    width: 80%;
    padding: 10px;
    background-color: #2c2c2e;
    color: #d1d1d6;
    border: 1px solid #525252;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .rect-button:active {
    background-color: #3a3a3c;
  }
  
  .button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .button:active {
    background-color: #0056b3;
  }
  

/* Responsive styles for mobile */
@media (max-width: 1024px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff; /* Dark background */
    font-family: Arial, sans-serif;
    color: white;
  }

  .header {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 15px;
    margin-right: 0px;
  }

  .logo {
    width: 80%; /* Smaller logo for mobile */
    align-self: center;
    /* margin-bottom: 10px; */
  }

  .title {
    font-size: 1.5rem; /* Adjust title size for mobile */
  }

  .phone {
    width: 90%; /* Scale phone to fit within the screen */
    max-width: 360px; /* Prevent phone from getting too wide */
    max-height: 640px;
    height: 75%; /* Maintain aspect ratio */
  }
}