.touren-container {
  display: flex;
  height: 100vh;
}

.touren-main {
  flex: 1;
  background-color: #f4f6f8;
  padding: 20px;
}

.touren-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.start-tour-header-btn{
    background-color: #1f2a40;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 200px;
    height: 50px;
    padding: 10px;
    margin-right: 100px;
    border: 1px solid #1f2a40;
    border-radius: 10px;
    cursor: pointer;
}

.start-tour-header-btn:hover{
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.touren-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.touren-box {
  background: rgba(163, 163, 163, 0.15);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  min-width: 300px;
  max-width: 400px;
  flex: 1 1 300px;
}

.touren-box h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.touren-liste {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.touren-liste li {
  background-color: white;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.touren-liste li:hover {
  transform: scale(1.02);
}

.saved-toren-links{
    text-decoration: none;
    color: #1f2a40;
    font-size: 20px;
}