/* General body styles */
body {
  font-family: Arial, sans-serif;
  background-color: #d2d2d2;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column; /* Stacks buttons vertically */
}

.button-legend {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
  text-align: center;
  font-style: italic;
}

.addons-legend {
  font-size: 14px;
  color: #555;
  font-style: italic;
}

.addons-price-legend
{
  font-size: 14px;
  color: #555;
  font-weight: bolder;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #ccc;
  padding: 5vh 20px; /* You can adjust padding as needed */
  width: 80%;
  margin: 2vh auto;  /* Adjusting the margin with viewport height */
  background-color: #f9f9f9;
  box-sizing: border-box;
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4); /* Light shadow effect */
}


/* Style for the buttons */
.btn-title {
  display: inline-block;
  padding: 15px 30px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
}

.btn-home {
  width: 80%;
}


[data-ribbon] {
  position: relative;
  display: inline-block;
  padding: 20px 26px;
  background: var(--ribbon-bg, #FF7700);  /* Customizable background color */
  text-align: center;
  color: var(--ribbon-text, #fff);  /* Customizable text color */
  text-decoration: none;
}

[data-ribbon]:after {
  content: attr(data-ribbon);
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  padding: 2px 25px;
  background: 
    linear-gradient(to top right, var(--ribbon-accent, gold) 49%, transparent 50%) right/20px 100% no-repeat, 
    linear-gradient(to top left, var(--ribbon-accent, gold) 49%, transparent 50%) left/20px 100% no-repeat, 
    linear-gradient(var(--ribbon-accent, gold), var(--ribbon-accent, gold)) center/calc(100% - 40px) 100% no-repeat;
  color: var(--ribbon-text, #fff);  /* Customizable text color */
  transform: rotate(45deg) translate(26%, -60%);
}


.btn-dark {
  background-color: #333;
  border: none;
}

.btn-dark:hover {
  background-color: #555;
}

.btn-dark:active {
  background-color: #222;
  transform: scale(0.98);
}


/* Button size variations */
.btn-lg {
  font-size: 20px;
  padding: 15px 40px;
}



/* Responsive design */
@media (max-width: 768px) {
  .btn-lg {
      font-size: 16px;
      padding: 10px 30px;
  }
}
