/* @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');

.nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
*/

body {
  background-color: #000000;
  color: #ffffff;
  font-family: Helvetica, sans-serif;
  padding: 0px;
}

/* assets/style.css */
.col-info {
  margin-left: 15px; 
  color: rgb(192,200,233);
  padding: 5px;
  background-color: rgba(33, 39, 71, 0.5);
  border: 2px solid rgb(192,200,233);
  border-radius: 10px;
  margin: 20px;
  width: 20vw;
  height: 3.5vw;  
  display: flex; 
  align-items: center; 
  justify-content: center;  
  text-align: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.col-info:hover {
  color: #6ddef6;
  border-color: #6ddef6;
  background-color: rgb(3,40,48);
}

.dmc-modal-root {
  background-color: rgb(25,25,37);
}

.dmc-modal-content {
  background-color: rgb(25,25,37);
}

.col-info-table {
  background-color: rgb(158, 165, 192, 0.2);
  padding: 20px;
  border-radius: 5px;
}

/* Custom styles for the table */
.col-info-table table {
  border-spacing: 0 20px;
  background-color: #f8f9fa;
  color: white;
  border-radius: 20px;
}

.col-info-table th {
  background-color: rgb(158, 165, 192, 0.2); 
  color: white;
  padding: 10px;
}

.col-info-table td {
  background-color: rgb(158, 165, 192, 0.3);
  color: white;
  padding: 10px;
  border-radius: 0px;
}