header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    padding: 5px 10px;
    transition: color 0.3s ease;
}
header nav ul li a:hover {
    color: #3FE0BE;
    background-color: #333;
    border-radius: 5px;
}

.btn-primary {
    background-color: #3FE0BE;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgba(63, 224, 190, 0.4);
}

.btn-primary:hover {
    background-color: #2DC9A7;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(63, 224, 190, 0.6);
}

/* Vyhledávání */
#search-input {
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 25px;
    width: 300px;
}
#search-input:focus {
    border-color: #3FE0BE;
    box-shadow: 0 0 10px #3FE0BE;
}

#search-button {
    background-color: #3FE0BE;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}
#search-button:hover {
    background-color: #2DC9A7;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #88e7cd; /* světlejší mint pro hover */
}

h1 {
  font-size: 2.5rem;
  border-bottom: 3px solid #1dbf73; /* tmavý mint */
  display: inline-block;
  padding-bottom: 5px;
  color: #145c3d; /* tmavší zelená pro nadpis */
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #31765a; /* tmavší, ale stále mintová */
}
/* Tlačítko zpět */
.back-button {
    position: fixed;
    top: 25px;
    left: 25px;
    background-color: #4db6ac;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(77, 182, 172, 0.5);
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.back-button:hover {
    background-color: #00796b;
}

/* Odstraňovací tlačítko */
.remove-btn {
    background-color: #ff8a80;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 8px rgba(255, 138, 128, 0.5);
}

.remove-btn:hover {
    background-color: #d84339;
    transform: scale(1.1);
}

/* Tlačítko pokračovat */
#proceed-btn {
    background-color: #00796b;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin: 40px auto 0;
    box-shadow: 0 6px 15px rgba(0, 121, 107, 0.5);
    transition: background-color 0.3s ease;
}

#proceed-btn:hover {
    background-color: #004d40;
}
/* components.css */

#payment-selection {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 137, 123, 0.15);
    padding: 50px 60px;
    max-width: 460px;
    width: 100%;
    text-align: center;
}

h3 {
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 2rem;
    color: #00796b;
}

#pay-button {
    margin-top: 45px;
    padding: 14px 35px;
    font-size: 1.25rem;
    background-color: #26a69a;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(38, 166, 154, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#pay-button:hover {
    background-color: #00796b;
    transform: scale(1.05);
}
h1 {
  margin-bottom: 25px;
  color: #00796b;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border: 2px solid #b2dfdb;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-color: #00796b;
  box-shadow: 0 0 8px #80cbc4;
}

button {
  background-color: #00796b;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #004d40;
}

.contact-info {
  margin-top: 30px;
  font-size: 1rem;
  color: #004d40;
}

.contact-info p {
  margin: 6px 0;
}
