/* Main CSS file */

/* General Styles */
body {
  background-color: rgb(37, 37, 37);
  color: aliceblue;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

/* Top Menu Styles */
.top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #333;
  border-bottom: 2px solid #555;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin: 0px;
  padding: 5px 10px;
  background-color: aliceblue;
  border-radius: 5px;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu ul li {
  margin-left: 20px;
  cursor: pointer;
}

.menu ul li a {
  color: aliceblue;
  font-weight: bold;
  transition: color 0.3s;
}

.menu ul li a:hover {
  color: #1e90ff;
}
/* Button Styles */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Green Button */
.btn-green {
  background-color: #28a745;
  color: white;
}

.btn-green:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Blue Button */
.btn-blue {
  background-color: #007bff;
  color: white;
}

.btn-blue:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Red Button */
.btn-red {
  background-color: #dc3545;
  color: white;
}

.btn-red:hover {
  background-color: #c82333;
  transform: scale(1.05);
}

/* Error Message Styles */
.msg_error {
  color: #ff6b6b; /* Bright red color to highlight the error */
  background-color: #ffe6e6; /* Light red background for visibility */
  border: 1px solid #ff6b6b; /* Matching border color */
  border-radius: 4px; /* Slightly rounded corners */
  padding: 10px; /* Space around the text */
  margin-top: 5px; /* Space above the message */
  font-size: 14px; /* Slightly smaller font size */
}

/*Badge*/
.badge {
  background: linear-gradient(45deg, #ff9946, #ecff40);
  color: black;
  padding: 6px 12px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Footer Styles */
footer {
  background-color: #333;
  color: #bbb;
  text-align: center;
  padding: 10px 0;
  border-top: 2px solid #555;
  position: fixed;
  width: 100%;
  bottom: 0;
}
