
.ru-zone-group {
    margin-bottom: 1rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ru-zone-header {
    padding: 5px;
    background: #000000;
    color: white;
    border-radius: 12px 12px 0 0;
    border-bottom: 2px solid #e9ecef;
}

.ru-zone-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f9f9f9;
    margin: 0;
}

.ru-route-card {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid #e9e9e9;
    transition: background 0.2s ease;
    padding-bottom: 5px;
}

.ru-route-card:last-child {
    border-bottom: none;
}

.ru-route-image {
    width: 350px;
    height: 290px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.ru-route-details {
    flex-grow: 1;
}

.ru-route-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.ru-route-meta {
   color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    max-height: 50px;
    overflow: hidden;
}

.ru-route-stats {
  display: flex;
  flex-wrap: wrap;
}

.ru-stat-item {
    align-items: center;
    gap: 0.5rem;
    margin-right: 10px;
}

.ru-stat-label {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  margin-right: 10px;
}

.ru-stat-value {
  color: #2d3436;
  font-size: 13px;
}

.ru-difficulty-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ru-difficulty-beginner { background: #e3f2fd; color: #1976d2; }
.ru-difficulty-intermediate { background: #fff3e0; color: #ef6c00; }
.ru-difficulty-expert { background: #ffebee; color: #d32f2f; }


.ru-search-container {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.ru-search-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ru-search-input {
    flex: 1;
    min-width: 250px;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 3px;
    transition: border-color 0.3s ease;
    height: 39px;
    font-size: 12px;
}

.ru-search-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

.ru-filter-select {
    flex: 0.5;
    min-width: 200px;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    font-size: 12px;
    height: 39px;
}

.ru-search-btn {
    padding: 0.5rem 1.5rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ru-search-btn:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .ru-search-form {
        flex-direction: column;
    }
    
    .ru-search-input,
    .ru-filter-select {
        width: 100%;
        flex: none;
    }
}


@media (max-width: 768px) {
    .ru-route-card {
        flex-direction: column;
        gap: 1rem;
    }
    .ru-route-image {
      width: 100%;
      height: 174px !important;
      overflow: hidden !important;
    }

    .ru-route-stats {
        flex-wrap: wrap;
    }
}


/* Add to your existing styles */
.ru-form-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
  
  .ru-form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
  }
  
  .ru-form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1.5rem;
  }
  
  .ru-form-group {
    margin-bottom: 5px;
  }
  
  .ru-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2d3436;
    margin-bottom: 0.5rem;
  }
  
  .ru-form-input,
  .ru-form-select,
  .ru-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
  }
  
  .ru-form-input:focus,
  .ru-form-select:focus,
  .ru-form-textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
  }
  
  .ru-form-row {
    display: flex;
    gap: 1.5rem;
  }
  
  .ru-form-col {
    flex: 1;
  }
  
  .ru-form-actions {
    margin-top: 2rem;
    text-align: right;
  }
  
  .ru-form-submit {
    background: #3498db;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .ru-form-submit:hover {
    background: #2980b9;
  }
  
  @media (max-width: 768px) {
    .ru-form-row {
      flex-direction: column;
      gap: 1rem;
    }
    
    .ru-form-container {
      padding: 1.5rem;
    }
  }

  .ru-checkbox{
    background-color: #000000;
    width: 112px;
    border-radius: 3px;
    padding: 0 5px;
    margin: 10px 0;
    color: white;
  }


.common-box-section{
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 10px;
}