body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.header h1 {
    margin: 0;
    color: #2d3748;
}

.cve-table {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-collapse: collapse;
}

.cve-table th,
.cve-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cve-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #4a5568;
}

.cve-table tbody tr:hover {
    background-color: #f7fafc;
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pagination button {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.pagination button:hover {
    background-color: #f7fafc;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.results-per-page {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.results-per-page select {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.cve-details {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cve-details h2 {
    margin-top: 0;
    color: #2d3748;
}

.score-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.score-high {
    background-color: #feb2b2;
    color: #c53030;
}

.score-medium {
    background-color: #fbd38d;
    color: #c05621;
}

.score-low {
    background-color: #9ae6b4;
    color: #2f855a;
}
