File size: 1,475 Bytes
f6c14df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.overlay {
  position: fixed; inset: 0; background: rgba(28,24,20,.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: 16px;
  backdrop-filter: blur(3px);
  animation: fadeIn .15s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.modal {
  background: var(--bg-elevated); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-xl); width: 100%; max-width: 530px;
  box-shadow: var(--shadow-lg);
  animation: slideUp .2s ease;
  max-height: 92vh; overflow-y: auto;
}
@keyframes slideUp { from{transform:translateY(18px);opacity:0} to{transform:translateY(0);opacity:1} }

.header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px 0;
}

.title { font-family: 'Lora', serif; font-size: 17px; font-weight: 700; color: var(--text-primary); }

.closeBtn {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  padding: 5px; border-radius: var(--radius); display: flex; align-items: center;
  transition: all .13s;
}
.closeBtn:hover { background: var(--bg-hover); color: var(--text-primary); }

.body { padding: 18px 22px; display: flex; flex-direction: column; gap: 14px; }

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.footer {
  display: flex; justify-content: flex-end; gap: 9px;
  padding-top: 4px; border-top: 1px solid var(--border); margin-top: 4px;
}

@media(max-width:480px){ .row{grid-template-columns:1fr;} }