File size: 1,447 Bytes
1ab92d7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #282a36;
  color: #f8f8f2;
}

.container {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 40px;
  border: 3px solid #6272a4;
  border-radius: 15px;
  background-color: #44475a;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.input-group,
.output-group {
  margin-bottom: 30px;
}

label {
  display: inline-block;
  width: 300px;
  text-align: right;
  margin-right: 20px;
  font-size: 18px;
  font-weight: bold;
}

input,
select {
  width: 300px;
  padding: 10px;
  border-radius: 8px;
  border: 2px solid #6272a4;
  background-color: #f8f8f2;
  color: #282a36;
  font-size: 18px;
}

.predict-button {
  padding: 15px 30px;
  background-color: #50fa7b;
  color: #282a36;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.predict-button:hover {
  background-color: #5af78e;
}

/* Range slider styles */
input[type=range] {
  width: 100%;
  height: 25px;
  background: #44475a;
  outline: none;
  opacity: 0.7;
  border-radius: 20px;
  box-shadow: 0 0 5px #6272a4;
  -webkit-appearance: none;
}

input[type=range]::-webkit-slider-thumb {
  width: 25px;
  height: 25px;
  background: #50fa7b;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0 5px #6272a4;
  -webkit-appearance: none;
}

input[type=range]:focus {
  opacity: 1;
}