/* Global Styles */

body {
  background-color: darkolivegreen;
  font-family: Arial, sans-serif;
}

/* Form Styles */

.form {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px;
  background-color: darkgoldenrod;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form h1 {
  color: white;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="number"] {
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="number"]:focus {
  border-color: #aaa;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.form button[type="button"] {
  margin-left: 90px;
  margin-top: 10px;
  background-color: rgb(0, 0, 0);
  color: white;
  text-shadow: -2px 2px 10px black;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 50%;
}

.form button[type="button"]:hover {
  background-color: orangered;
  text-shadow: -2px 2px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* Table Styles */

.table {
  background-color: darkgoldenrod;
  margin: 20px auto;
  width: auto;
  border-collapse: collapse;
  font-weight: 600;
}

.table table {
  width: 100%;
  border: 2px solid black;
}

.table tr td {
  box-shadow: -2px 5px 10px black;
  padding: 5px 10px;
  text-align: left;
}

.table button {
  padding: 5px 10px;
  border: 0;
  outline: 0;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: 0.5s ease-in;
  font-size: 16px;
  font-weight: bold;
}

.table button:hover {
  border: 1px solid #ccc;
  color: #111;
  background: transparent;
}

.table .del {
  background: rgb(166, 0, 0);
  color: #fff;
}

.table .up {
  background: #06366c;
  color: #fff;
}

/* Notification Styles */

#notification {
  background: lightgreen;
  width: 100%;
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Utility Styles */

.update_Data {
  visibility: hidden;
}

.show {
  visibility: visible;
}
