File size: 1,466 Bytes
759768a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.navigation {
  width: 280px;
  background: white;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  padding: 30px 0;
}

.nav-list {
  list-style: none;
}

.nav-item {
  margin: 8px 0;
}

.nav-button {
  width: 100%;
  padding: 16px 30px;
  border: none;
  background: none;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-button:hover {
  background: #f5f5f5;
  border-left-color: #2E7D32;
}

.nav-item.active .nav-button {
  background: #e8f5e8;
  border-left-color: #2E7D32;
  color: #2E7D32;
  font-weight: 600;
}

.nav-icon {
  font-size: 1.2rem;
  width: 24px;
}

.nav-label {
  flex: 1;
}

@media (max-width: 768px) {
  .navigation {
    width: 100%;
    padding: 20px 0;
    order: 2;
  }
  
  .nav-list {
    display: flex;
    overflow-x: auto;
    padding: 0 15px;
  }
  
  .nav-item {
    flex-shrink: 0;
    margin: 0 4px;
  }
  
  .nav-button {
    padding: 12px 16px;
    border-left: none;
    border-bottom: 3px solid transparent;
    flex-direction: column;
    gap: 4px;
    min-width: 80px;
  }
  
  .nav-button:hover {
    border-left: none;
    border-bottom-color: #2E7D32;
  }
  
  .nav-item.active .nav-button {
    border-left: none;
    border-bottom-color: #2E7D32;
  }
  
  .nav-label {
    font-size: 0.8rem;
  }
}