File size: 1,973 Bytes
8472119
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.delete-container {
        background: white;
        border-radius: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        margin: 2rem 0;
        max-width: 600px;
}

.delete-header {
    text-align: center;
    margin-bottom: 2rem;
}

.delete-icon {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.delete-title {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.delete-subtitle {
    color: #6b7280;
    margin: 0;
}

.subject-info {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.subject-info h5 {
    color: #991b1b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.subject-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.subject-detail:last-child {
    margin-bottom: 0;
}

.warning-box {
    background: #fffbeb;
    border: 1px solid #fed7aa;
    border-left: 4px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1.5rem 0;
}

.warning-box h6 {
    color: #92400e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.warning-box p {
    color: #92400e;
    margin: 0;
    font-size: 0.875rem;
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: #6b7280;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-secondary:hover {
    background: #4b5563;
    color: white;
    text-decoration: none;
}