*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background: black;
}

.nav-item {
    text-align: center;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background-color: #333;
}

.nav-item:active {
    background-color: #555;
    color: white;
    scale: 0.95;
}

.navbar-logo {
    align-items: center;
    width: 120px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.btn {
    transition: all 0.3s ease;
}

.btn:active {
    scale: 0.95;
}

#delete-shopping-cart {
    margin-bottom: 10px;
}

#checkout-btn {
  box-shadow: 0 2px 8px rgba(0, 128, 0, 0.3);
}
#checkout-btn:hover {
  background-color: #157347;
}