/* Base styles */

.pb-52 {
  background-color: black;
  color: white;
  line-height: 1.5; /* Adjust as needed for readability */
  overflow-x: hidden;
  overflow-y: auto;
}

.MuiTablePagination-selectLabel {
    margin-bottom: 0;
}

.MuiTablePagination-displayedRows {
    margin-bottom: 0;
}

.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Startup,Login,Signup */
/* components/Startup.css */
.startup-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background-color: #0b0404; /* Optional: Set a background color */
}

.startup-image {
  width: 145px; /* Set the width to 145px */
  height: 192px; /* Set the height to 192px */
  margin-bottom: 20px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between the buttons */
}

.lnkbtn {
  display: inline-block;
  width: 159px; /* Fixed width of 159px */
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  font-weight: bold; 
  color: white;
  background-color: rgba(0, 123, 255, 0.211); /* Transparent blue */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  /* box-sizing: border-box; */
}


.lnkbtn:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

.btn{
  display: inline-block;
  width: 240px; /* Fixed width of 159px */
  padding: 10px 20px;
  /* margin: 5px; */
  font-size: 16px;
  font-weight: bold; 
  color: white;
  background-color: rgba(0, 123, 255, 0.177); /* Transparent blue */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.btn:hover {
  background-color: #0056b3; /* Darker shade on hover */
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Space between input fields and button */
}
.signup-input {
  width: 240px; /* Fixed width for input fields */
  padding: 10px 24px;
  font-size: 16px;
  color: #2a1104 !important; /* Text color */
  background-color: #fff; /* White background for input fields */
  border: 1px solid #ccc; /* Light border color */
  border-radius: 8px;
  text-align: center;
  font-weight:bold;
}
.signup-input::placeholder {
  color: #2a110484 !important; /* Placeholder text color */
  font-weight:bold;
}