File size: 1,528 Bytes
b682363 | 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 | /* src/styles/Reports.css */
.reports-page {
background-color: #0F172A;
color: #F8FAFC;
font-family: 'Inter', sans-serif;
padding: 60px 80px; /* More padding around page */
min-height: 100vh;
}
.reports-title {
font-size: 36px; /* Slightly bigger */
font-weight: bold;
margin-bottom: 48px; /* More space below title */
}
.reports-table {
background-color: #1E293B;
border-radius: 16px;
padding: 32px 40px; /* More padding inside the table container */
overflow-x: auto; /* To handle small screens */
}
.table-header,
.table-row {
display: grid;
grid-template-columns: 60px 140px 140px 120px 200px 140px; /* Wider columns */
padding: 18px 0; /* More vertical padding for rows */
border-bottom: 1.5px solid #334155;
}
.table-header {
font-weight: bold;
color: #38BDF8;
border-bottom: 3px solid #38BDF8;
}
.table-row:last-child {
border-bottom: none;
}
.severity {
padding: 8px 16px; /* More padding for badges */
border-radius: 8px;
font-weight: bold;
text-align: center;
font-size: 1rem;
}
.low {
background-color: #15803D;
color: #D1FAE5;
}
.medium {
background-color: #FBBF24;
color: #1F2937;
}
.high {
background-color: #DC2626;
color: #F8FAFC;
}
.download-btn {
background-color: #22C55E;
color: white;
padding: 10px 18px; /* Bigger clickable button */
font-size: 16px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.download-btn:hover {
background-color: #16A34A;
}
|