@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

body {
  font-family: "Inter", sans-serif;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
  text-align: center;
}
.tab {
  overflow: hidden;
  background-color: #f1f1f1;
  border-radius: 5px 5px 0 0;
}
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  transition: 0.3s;
  font-size: 16px;
  border-radius: 5px 5px 0 0;
}
.tab button:hover {
  background-color: #ddd;
}
.tab button.active {
  background-color: #ccc;
}
.tabcontent {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
}
form label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
form input[type="text"],
form input[type="email"],
form input[type="number"],
form input[type="tel"],
form input[type="url"],
form input[type="password"],
form input[type="date"],
form input[type="datetime-local"],
form select,
form textarea {
  width: calc(100% - 40px);
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
form input[type="date"] {
  width: 200px;
}
form input[type="datetime-local"] {
  width: 300px;
}
form select {
  width: 100px;
}
form input[type="submit"],
button[type="submit"] {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
form input[type="submit"]:hover {
  background-color: #45a049;
}

.container-table {
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 20px;
}

.table-container {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-family: Arial, sans-serif;
}

th,
td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
th {
  background-color: #f2f2f2;
}
.actions {
  white-space: nowrap;
}
.actions button {
  padding: 5px 10px;
  margin-right: 5px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  background-color: #4caf50;
  color: white;
}
.actions button:hover {
  background-color: #45a049;
}
.edit-btn {
  background-color: #2196f3;
}
.edit-btn:hover {
  background-color: #0b7dda;
}
.delete-btn,
.edit-btn {
  background-color: #f44336;
  border: none;
  padding: 8px 12px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 4px;
}
.delete-btn:hover {
  background-color: #da190b;
}

.edit-btn {
  background-color: #eee;
  color: #000;
}

.edit-btn:hover {
  background-color: #efefef;
  color: #000;
}


/* Header */

header {
  background-color: #333;
  padding: 10px;
  text-align: center;
}

header a {
  color: #fff;
  text-decoration: none;
  margin: 0 20px;
  font-size: 18px;
}

header a:hover {
  color: #ffd700; /* Change to desired hover color */
}

/* Login form */

.login-form-container {
  max-width: 400px;
  margin-inline: auto;
  margin-top: 100px;
}
