File size: 1,541 Bytes
1ef0e71
83a03dc
1ef0e71
 
83a03dc
1ef0e71
83a03dc
 
 
 
 
 
 
 
 
 
7f58289
83a03dc
 
 
 
 
1ef0e71
 
83a03dc
1ef0e71
83a03dc
 
 
1ef0e71
83a03dc
 
 
 
 
 
 
1ef0e71
 
83a03dc
 
 
 
 
 
1ef0e71
83a03dc
 
 
 
 
 
 
 
 
 
 
 
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
footer {
    visibility: hidden; /* If you want completely removed, consider display: none; */
}

/* Generate Button Styling */
#generate_button {
    color: #fff;
    background: #2563eb; /* Nice blue */
    border: 2px solid #1e40af; /* Darker blue border */
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.5);
}

#generate_button:hover,
#generate_button:focus {
    background: #1e40af; /* Darker blue on hover */
    border-color: #1a3a9a;
    outline: none;
}

/* Save Button Styling */
#save_button {
    color: #fff;
    background: #01b97c; /* Fresh green */
    border: 2px solid #017a50; /* Dark green border */
    width: 200px;
    padding: 12px 0;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(1, 185, 124, 0.5);
    text-align: center;
}

#save_button:hover,
#save_button:focus {
    background: #017a50; /* Darker green on hover */
    border-color: #015d3b;
    outline: none;
}

/* Settings Header Styling */
#settings_header {
    background: rgb(245, 105, 105); /* Slightly softer red */
    background: linear-gradient(90deg, #f56969, #e94e4e);
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(245, 105, 105, 0.5);
    user-select: none;
}