@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background: rgb(77, 77, 77);
  background: linear-gradient(21deg, rgb(77, 77, 77) 0%, rgb(133, 133, 133) 48%, rgb(231, 231, 231) 100%);
}

.recherch {
  position: absolute;
  background-color: transparent;
  border: none;
  margin-left: -30px;
  margin-top: 9px;
}

.id {
  display: none;
}

.supprimer {
  border-radius: 10px;
  background-color: red;
  text-decoration: none;
  padding: 5px 10px;
  color: #000000;
}

.modifier {
  border-radius: 10px;
  background-color: blue;
  text-decoration: none;
  padding: 5px 10px;
  color: #fff;
}

.rechercher {
  text-align: center;
}

.bg {
  width: 200px;
  margin: auto;
  background-color: #333;
  padding: 12px;
  color: white;
  font-weight: 600;
}

#search {
  padding: 8px 20px;
  border-radius: 5px;
}

#submit {
  padding: 8px;
  margin-left: -5px;
}

/*//// table  ////*/
table.customTable {
  margin: auto;
  width: auto;
  height: 100%;
  background-color: #FFFFFF;
  border-collapse: collapse;
  border-width: 2px;
  border-color: #7EA8F8;
  border-style: solid;
  color: #000000;
  max-width: 85%;
}

table.customTable td, table.customTable th {
  border-width: 2px;
  border-color: #7EA8F8;
  border-style: solid;
  padding: 5px;
}

table.customTable thead {
  background-color: #7EA8F8;
}

.add {
  z-index: 111111;
  color: black;
  position: absolute;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  top: 0;
  font-weight: 600;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.333);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

/*/////// ////////*/
.navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 84%;
  border: 3px solid #7EA8F8;
  padding: 5px;
  background-color: #fff;
  margin: 2px auto;
  gap: 30px;
}

.bg-hover {
  padding: 5px 8px;
  border-radius: 2px;
}

.bg-hover:hover {
  transition: 0.3s ease-in-out;
  background-color: rgb(184, 184, 184);
}

.active-bg {
  padding: 5px 8px;
  background-color: rgb(184, 184, 184);
  border-radius: 2px;
}

a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.ar:hover {
  transform: translateX(-5px);
}

.av:hover {
  transform: translateX(5px);
}

.blocInput {
  position: absolute;
  right: 0;
  top: 46vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.un {
  margin-bottom: 3vh;
}

.calc {
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 12px 5px 12px 5px;
  background-color: rgba(124, 124, 124, 0.7019607843);
  border-top: none;
  border-left: none;
  color: #fff;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
}

.calc::-moz-placeholder {
  color: #fff;
}

.calc::placeholder {
  color: #fff;
}

.calc:focus {
  border-top-left-radius: 12px;
  background-color: rgba(51, 51, 51, 0.267);
}

