.asc-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    border-radius: 8px;
}

.asc-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.asc-row select,
.asc-row input {
    flex: 1;
    padding: 10px;
    font-size: 14px;
}

button[type="submit"] {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background: #005a87;
}

.asc-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.asc-results-table th,
.asc-results-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.asc-results-table tr:hover {
    background-color: #e9f5ff;
}
