body {
  font-family:  Arial, sans-serif;
  background: #272b41;
  color: #ffffff;
  margin: 0;
  padding: 20px;
  padding-bottom: 70px;
}

h1 {
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-top:0px !important;
}

.card {
  background-color: rgba(39, 43, 65, 0.8);
  border: 1px solid #F12C4C;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.section {
  border: 1px solid #F12C4C;
  border-radius: 10px;
  padding: 20px;
  background: rgba(39, 43, 65, 0.9);
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(241, 44, 76, 0.4);
}

label {
  color: #ffffff;
  margin-bottom: 5px;
}

.btn-calculate {
  background-color: #F12C4C;
  color: #ffffff;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-calculate:hover {
  background-color: #d1253f;
  transform: translateY(-3px);
}

table {
  width: 100%;
  color: #ffffff;
  border-collapse: collapse;
}

table thead {
  background-color: #F12C4C;
}

table th,
table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #F12C4C;
}

table tbody tr:nth-child(even) {
  background-color: rgba(39, 43, 65, 0.7);
}

.table-responsive {
  overflow-x: auto;
}



/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #272b41;
}

::-webkit-scrollbar-thumb {
  background: #F12C4C;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d1253f;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #F12C4C #272b41;
}



body{
    overflow-y:scroll;
}


  
.footer-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(39, 43, 65, 0.95);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  border-top: 1px solid #F12C4C;
}




.footer-menu a {
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

.footer-menu a i {
  font-size: 20px;
  margin-bottom: 4px;
}

.footer-menu a:hover {
  color: #F12C4C;
}


.avatar {
  position: fixed;
  right: 20px;
  cursor: pointer;
  background-color: #F12C4C;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
}

.dropdown-menu {
  position: absolute;
  top: 70px;
  right: 20px;
  background-color: #272b41;
  border: 1px solid #F12C4C;
  border-radius: 10px;
  padding: 10px;
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 5px 10px;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-menu a:hover {
  background-color: #F12C4C;
}

.last-rounds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: rgba(39, 43, 65, 0.8);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.round {
  width: 30px;
  height: 30px;
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.round:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 4px rgba(241, 44, 76, 0.6);
}

.red {
  background-color: #e74c3c;
}

.black {
  background-color: #2c3e50;
}

.green {
  background-color: #27ae60;
  color: #ffffff;
}

.suggestion,
.statistics {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}

.alert {
  font-size: 1em;
  color: #F12C4C;
  font-weight: bold;
  text-align: center;
}

canvas {
  width: 100%;
  max-width: 100%;
}



  
  
