@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(
    90deg,
    rgba(99, 211, 195, 1),
    rgba(179, 232, 224, 1)
  );
}

form {
  width: 400px;
  margin: auto;
  padding-top: 100px;
}

.bg {
  background-color: #e6f7f5;
}

.btn-color {
  background-color: #b3e8e0ff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-color:hover {
  background-color: #a0d8d1;
  transition: background-color 0.3s ease;
}

.center {
  display: flex;
  justify-content: center;
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  height: 100%;
  width: 250px;
  background-color: rgb(52, 152, 137);
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.main-content {
  margin-left: 250px;
  padding: 1.5rem;
}

.card {
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }
  .main-content {
    margin-left: 0;
  }
}
.rounded-table {
  border: 3px solid rgb(44, 129, 117) !important; 
  border-radius: 10px; 
  overflow: hidden; 
}

.rounded-table th,
.rounded-table td {
  border: 2px solid rgb(44, 129, 117);
}

