

body .table tr:hover td {
  border-top-color: rgba(255, 255, 255, 0.08);
  outline: none;
  cursor: pointer;
  background: #e2dede;
}

body.dark-mode-active .table tr:hover td {
  border-top-color: rgba(255, 255, 255, 0.08);
  outline: none;
  cursor: pointer;
  background: #314c72;
}
body.dark-mode-active .table thead th {
  color: #2a93d5;
}

body.dark-mode-active h4 {
  color: #93B94C;
}

body.dark-mode-active td {
  color: #FFFFFF;
}

body.dark-mode-active input[type=text]{
  color: #FFFFFF;
}
body.dark-mode-active ::placeholder{
  color: #FFFFFF;
}


body.dark-mode-active .profileBox {
  background: #2a93d5;
}

body.dark-mode-active .bg-primary {
  background: #93B94C !important;
}


/* Tables */
.cellkwh {
  text-align: right;
}
.celltime{
  text-align: center;
}



.card-style {
	background-image: linear-gradient(to right top,#5b6e82,#34495e,#34495e);
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  position: relative;
  min-height: 180px;
  color: #eeeeee;
  /*box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1); 
  border-bottom: 6px solid #2c3e50;
  border-right: 6px solid #2c3e50;*/
}

.btn-success {
  background-color: #93b94c !important;
  border-color: #93b94c !important;

}


.card-name, .card-site {
  position: absolute;
  left: 10%;
  /*font-family: sans-serif;*/
  /*color: white;*/
  /*text-transform: uppercase;*/
  /*text-shadow: 0px 0px 3px black;*/
}

.card-name {
  top: 70%;
  font-size: 1.3rem;
}

.card-site {
  top: 82%;
  font-size: 1rem;
}

.card-status {
  margin: 0;
  display: inline-block;
  padding: 10px 20px;
  padding-left: 5%;
  position: absolute;
  top: 10%;
  left: 0;
  font-size: 1.5rem;
  font-family: sans-serif;
  /*color: white;*/
  font-weight: bold;
  /*background-color: #93B94C;*/
  background-color: #2A93D5;
  min-width: 30%;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.card-info-free  {
  background-color: #93B94C;
}
.card-info-hs {
  background-color: #FF0000
}
.card-info-charging {
  background-color: #2A93D5
}
.card-info-occupied {
	background-color: #BC7F14
}
.card-info-charged {
	background-color: #d81ec3;
}
.card-action-button {
  position: absolute;
  top: 5%;
  right: 5%;
  height: 30%;
}

.card-logo {
  position: absolute;
  bottom: 5%;
  right: 5%;
  height: 30%;
}

.card-charginguser {
  position: absolute;
  text-transform: uppercase;
  top: 40%;
  right: 8%;
  text-align: right;
  font-size: 1.0rem;
}
.card-transaction {
  color: #2A93D5;
}

.card-transaction-info {
  color: #2A93D5;
  position: absolute;
  top: 40%;
  right: 8%;
  text-align: right;
  font-size: 1rem;
}


/* Conteneur pour la grille */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 15px;
  padding: 20px;
  justify-items: center;
}

/* Style pour chaque icône et texte */
.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Carré avec le texte centré */
.icon {
  width: 60px;
  height: 60px;
  /*background-color: #93B94C;*/
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  
  margin-bottom: 5px;
}

/* Texte sous chaque carré */
.app-icon p {
  font-size: 10px;
  color: #fff;
  margin: 0;
}


#responseContainer {
  transition: opacity 2s; 
  opacity: 1;
}
