#cert-search-form {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 1rem;
}
#cert-search-form input {
flex: 1 1 30%;
padding: 10px;
min-width: 200px;
box-sizing: border-box;
} #cert-search-form button {
padding: 10px 20px;
background: #0073aa;
color: #fff;
border: none;
cursor: pointer;
} #cert-results {
overflow-x: auto;
}
#cert-results table {
width: 100%;
border-collapse: collapse;
min-width: 600px;
}
#cert-results th, #cert-results td {
padding: 8px 12px;
border: 1px solid #ccc;
text-align: left;
}
@media (max-width: 768px) {
#cert-search-form {
flex-direction: column;
}
#cert-search-form input {
flex: 1 1 100%;
}
}