File size: 941 Bytes
4edc3e5
 
 
 
 
 
 
 
 
 
 
2d42370
4edc3e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Comment area */
.comment-area {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #141b2f;
  padding: 24px;
  border-radius: 15px;
  border: 1px solid #2c3554;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  width: 90%;
}

.comment-area h2 {
  margin: 0 0 8px 0;
  font-size: 1.5rem;
  color: #f5f5f5;
  font-weight: 600;
}

.comment-area textarea {
  /* max-width: 425px; */
  min-height: 120px;
  border-radius: 10px;
  border: 1px solid #2c3554;
  background: #0d1324;
  color: #f5f5f5;
  padding: 12px;
  resize: vertical;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.comment-area textarea:focus {
  outline: none;
  border-color: #4a5f8f;
}

.comment-area textarea::placeholder {
  color: #6b7280;
}

/* Button container */
.comment-area .button-group {
  display: flex;
  gap: 12px;
  margin: auto;
}