
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #ffffff;
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #111;
}

.navbar h1 {
    font-size: 20px;
    color: #fff;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #f0a500;
}

main {
    padding: 20px;
    text-align: center;
}
.badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8em;
    color: white;
    margin-left: 8px;
}

.badge.mocha {
    background-color: #8e44ad; /* Purple */
}

.badge.pytest {
    background-color: #3498db; /* Blue */
}

.badge.phpunit {
    background-color: #27ae60; /* Green */
}

.badge.junit {
    background-color: #e74c3c; /* Red */
}

.carousel {
    overflow: hidden;
    max-width: 800px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
}

.carousel-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between cards */
}

.card {
    background-color: #f1f1f1;
    color: #000;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 220px; /* Adjust width as needed to fit more cards in a row */
    text-align: center;
    flex: 1 1 calc(33.333% - 40px); /* For 3 cards per row, adjust as needed */
    max-width: 250px; /* Set max-width to keep a consistent card size */
    margin-bottom: 20px;
}

.card h3 {
    font-size: 18px;
}

.card img {
    width: 50px;
    margin-bottom: 10px;
}

.card button {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.card button:hover {
    background-color: #0056b3;
}
