.accg-frontend {
  /* max-width: 800px; */ 
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.accg-frontend-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.accg-frontend-form select,
.accg-frontend-form input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    min-width: 150px;
    font-size: 14px;
}
.accg-select {
    max-width: 150px;
}
.accg-result-card {
    border: 1px solid #e1e1e1;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
}

.accg-download-button:hover {
    color: #fff;
}
.accg-result-card p {
    margin: 0;
    font-size: 14px;
}
.accg-download-button {
    background: #0073aa;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none !important;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
}
.accg-download-button:hover {
    background: #005f8a;
}
.accg-error {
    color: #d63638;
    font-weight: bold;
    font-size: 14px;
}
.accg-certificate-list .accg-certificate-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #e1e1e1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.accg-certificate-list .accg-certificate-table th,
.accg-certificate-list .accg-certificate-table td {
    padding: 12px;
    border-bottom: 1px solid #e1e1e1;
    font-size: 14px;
}
.accg-certificate-list .accg-certificate-table th {
    background: #f1f1f1;
    font-weight: 600;
    color: #333;
    text-align: left;
}
.accg-certificate-list .accg-certificate-table tr:hover {
    background: #f9f9f9;
}
.accg-certificate-list .accg-name {
    text-align: left;
}
.accg-certificate-list .accg-download {
    text-align: right;
}
.accg-pagination {
    text-align: center;
    margin-top: 20px;
}
.accg-pagination a {
    margin: 0 5px;
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #0073aa;
    font-size: 14px;
}
.accg-pagination a.active,
.accg-pagination a:hover {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}