body {
  font-family: 'Poppins', sans-serif;
}

nav#navbar {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  background-color: #f0f0f0;
  padding: 10px;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
}

nav#navbar a {
  text-decoration: none;
  color: #333; /* Dark gray text */
  padding: 8px 12px; /* Padding around link text */
  border-radius: 5px; /* Rounded corners */
}

nav#navbar a:hover {
  background-color: #ddd; /* Light gray background on hover */
}

.card {
width: 400px;
height: 350px;
border-radius: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
font-family: 'Poppins', sans-serif;
}

.card-header {
background-color: #999999;
color: #000000;
padding: 10px;
border-radius: 10px;
text-align: center;
}

.card-header h1 {
margin: 0;
}

.card-header h2 {
margin: 0;
}

.card-body {
background-color: #474747;
color: #fff;
padding: 10px;
border-radius: 4px;
text-align: center;
}


.executor-logo {
width: 100px;
height: 100px;
border-radius: 20px;
margin: 20px auto;
}

.card-text {
font-size: 18px;
font-weight: 500;
width: 100%;
color: #ebebeb;
}

.currently {
font-size: 14px;
color: #00ff02;
}

.uncurrently {
font-size: 14px;
color: #fe1a00;
}

.version {
font-size: 14px;
color: #999999;
}

.last-update {
font-size: 14px;
color: #999999;
}

.download-btn {
text-decoration: none;
background-color: #337ab7;
color: #fff;
border: none;
border-radius: 25px;
padding: 5px 15px;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}

.download-btn:hover {
background-color: #23527c;
}

.card:hover {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.notification-banner {
      background-color: red;
      color: white;
      text-align: center;
      padding: 15px;
      font-size: 1em;
      font-family: Arial, sans-serif;
      width: auto;
      border-radius: 3.5px;
    }

    .notifications-test {
      text-decoration: none;
      color: blue;
    }
    
    .notification-text {
      animation: blink 2s linear infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }
