/* Contenitore facoltativo, se il bottone è un <a> o <button> */
.btn-generic {
    cursor: pointer;
    padding: 5px;
    margin: 3px;
    margin-left: 0px;
    color: var(--color-white);

    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #9fd632),
        color-stop(100%, #79b40e)
        );

    width: 100%;

    border-radius: 5px;

    border: solid 1px #455f42;
    -webkit-appearance: button;
    box-sizing: border-box;
    text-decoration: none;
    text-align: center;

}


.additional-link-container
{
    padding: 0.8rem 1.6rem;

}

/* Effetto hover */
.btn-generic:hover,
.btn-generic:focus {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0%, #9fd632),
        color-stop(100%, #8ac718)
        );
}


.additional-link {
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  min-width: 120px;
}

.additional-link:hover {
  color: var(--color-white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Button-style additional links */
.additional-link.btn-style {
  background: linear-gradient(to bottom, #9fd632 0%, #79b40e 100%);
  border: 2px solid #7fae2e;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.5rem;
}

.additional-link.btn-style:hover {
  background: linear-gradient(to bottom, #8ac718 0%, #6ba00c 100%);
  border-color: #6ba00c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.sidebar-content .text-white {
  margin-bottom: 0.5rem;
}
/* Cart button specific styling */
.additional-link.cart-btn {
  background: linear-gradient(to bottom, #9fd632 0%, #79b40e 100%);
  border: 2px solid #7fae2e;
  color: var(--color-white);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  margin: 0 auto;
}

.additional-link.cart-btn:hover {
  background: linear-gradient(to bottom, #8ac718 0%, #6ba00c 100%);
  border-color: #6ba00c;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}




/* Effetto attivo/click 
.btn-generic:active {
  background-color: #004080;
  border-color: #004080;
}

.btn-generic:disabled,
.btn-generic.disabled {
  background-color: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
}


.btn-generic:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
} */